On Feb 12, 9:40 am, paul <phart...@gmail.com> wrote:
> hi -- after I do a login that successfully goes through a custom
> authenticate() and django login(), I get redirected to a web page that
> is build off of a template that prints out the value of
> {{ user.is_authenticated }}.  This always returns False, and after
> more interrogation I discovered that user is AnonymousUser.  I have
> read the Django docs several times over (TEMPLATE_CONTEXT_PROCESSORS
> has django.core.context_processors.auth,

Do you have the required middlewares  too ?

"""
First, install the SessionMiddleware and AuthenticationMiddleware
middlewares by adding them to your MIDDLEWARE_CLASSES setting. See the
session documentation for more information.
"""
http://docs.djangoproject.com/en/1.1/topics/auth/#authentication-in-web-requests

> and I'm sending the
> successful login web page as render_to_response(template, directory,
> context_instance(RequestContext(request)).

>From the view doing the auth and login ?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to