MyBB Community Forums

Full Version: reset all remember me user
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi All, 
do anyone know how to reset all the remember me user? i want them to re-login, any idea how?
Just truncat all data out of the session table in your database.
Edit: delayed response

you can try using SQL query like below which should logout all users (including yourself)
update `mybb_users` set `loginkey` = ''

see also common sql queries guidance
got it.. thanks .m.