Here is the problem I am facing with the Django Authenetication
- Access a page that requires a login.
- Logout (accessing django.contrib.auth.logout)
- Access the original login-protected page. You are still logged in
Any ideas how to solve the problem?
MY Django Session Settings are
SESSION_EXPIRE_AT_BROWSER_CLOSE = True SESSION_COOKIE_AGE = 3600
Thanks, Sujit