vote up 0 vote down star

I have a website,which will be frequently updated. Sometimes changes happen to User specific models and are linked to sessions. So after I update my site, I want the user to logout and log back in. So I would logout the user right then. If he logs back in, he will see the latest updates to the site.How do I do it?

flag

61% accept rate

2 Answers

vote up 8 vote down check

You could just reset your session table. This would logout every user. Of course, depending on what your doing with sessions, it could have other implications (like emptying a shopping cart, for example).

python manage.py reset sessions

Or in raw SQL:

DELETE FROM django_sessions
link|flag
2  
for some it might be easier to just log into a database manager (phpPgAdmin, phpMyAdmin, etc), and just empty the django_sessions table. It has the same effect. – nbv4 Jul 10 at 4:52
vote up 0 vote down

See this: http://docs.djangoproject.com/en/dev/topics/auth/#how-to-log-a-user-out

That seems to cover it.

link|flag
Hello Lott, this is the normal logout, which can be called on demand. But what I wanted is a different one. Automatic logout of all users(ofcourse keeping in mind defrex suggestion on shopping carts) upon a site update. – Maddy Jul 13 at 5:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.