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?
|
|
|
|
|
|
|
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).
Or in raw SQL:
|
||||
|
|
|
See this: http://docs.djangoproject.com/en/dev/topics/auth/#how-to-log-a-user-out That seems to cover it. |
||
|
