On Nov 24, 4:23 pm, octopusgrabbus <[email protected]> wrote: > Sorry for the late reply. Most of my users will not remember to log > out. After, say four hours, I'd like to log them out, if of course > they're not already logged out.
That's just a matter of setting session cookies to expire properly. You need to set SESSION_COOKIE_AGE to 14400 (=4*60*60) to get it to expire after four hours, instead of the default two weeks. -- 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.

