Re: [web2py] How may I revoked a user logged in "server side"

2010-08-26 Thread Thadeus Burgess
Two ways, delete their session file... unless you know their IP it might be hard to find the right one, so if its ok just delete them all. The other way is a design thing. Add a column to the auth_user table that says "force_logout" that is a boolean type. If you just flag that to true, make the l

[web2py] How may I revoked a user logged in "server side"

2010-08-26 Thread Jean-Guy
Hello, I would like to know how may I revoked a user logged in "server side"? Can I just edit app/sessions/file... And comment appropriate line? Which lines are the appropriate lines? ;-) Jonhy