Had the same issue and the info below allowed me to resolve the issue,
i.e. is_valid() is now returning True on a valid username/password
combination. Seemed to me that the key was setting the test cookie and
assigning the POST data into the 'data' variable. The former makes
sense to me. The latter does not. I wonder if anyone out there can
explain why.

On May 12, 1:28 pm, adrian <adrian...@gmail.com> wrote:
> Figured it out by looking at how the admin view using
> AuthenticationForm:
>
> In POST:
>
> loginForm = AuthenticationForm(data=request.POST)
>
> note the use of data= which I have not seen before
>
> in GET:
>
>  loginForm = AuthenticationForm(request)
>         request.session.set_test_cookie()
>
> note the passing of request to the form which is also unusual

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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