On Oct 14, 10:39 am, luca72 <[email protected]> wrote: > Thanks but have you got idea why i get this error, request.user return > the correct value, but for my understanding also the META > ['REMOTE_USER'] has to give the same value.
No, that's not true, and the documentation doesn't say it does. The values in META are the headers which are passed by the web server. They are set before anything gets into Django, so things like the Django authentication framework don't affect them at all. The REMOTE_USER header would be set, if at all, by any webserver-based authentication, such as Apache's. -- DR. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

