up vote 0 down vote favorite
share [g+] share [fb]

I have been using Django for several years now and up until this point have always redirected users to a login page after registering their account, and therefore have never had a problem of this sort. I am currently running Django v1.01 and on a new yet-to-be-released site have a combined registration/authenticate/login view which works fine for most people, but we have had several users (with no clear patttern) wherein the first page (& subsequent view) they attempt to access tries to grab the user content from request.user, it returns an AnonymousUser object.

It has never thrown this error for me in Safari 4, or Firefox 3.5 on OS X 10.6.1, though it has thrown this error on another testers Safari 4, and another two users Firefox (3.0.15 and 3.5) on Windows (one in an VM, another on an actual Win Vista machine). By thrown error I'm simply implying that something is prohibiting the request from keeping the active authenticated, logged in user.

And yes, I'm authenticating, and then logging in the returned authenticated user object.

Suggestions?

Eric Elinow http://www.codedevl.com

link|improve this question
My gut says it may be a thread related problem. What server are you using? If Apache, are you using prefork MPM, or worker MPM? Prefork is recommended because of thread issues (I believe that's the primary reason, there may be other issues with worker MPM). – Peter Rowell Nov 7 '09 at 17:25
I'm using Apache 2+ w/Mod Python, Prefork compiled in. The lack of consistent functionality is driving me mad. This only happens when I authenticate and login the user in the same view which captures the registration data. If the users login via the login view, (also using the same login commands in the view) then this does not happen. Any other ideas? Thank you for your initial response nonetheless. Eric – user205671 Nov 8 '09 at 22:56
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.