MyBB Community Forums

Full Version: Reset the number of users online
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to reset the number of users currently online.

Thanks in advanced.
Not through the interface no.
You can log out individual users using this mod: http://mods.mybboard.net/view/admin-can-...s-any-user

However other than manually deleting the sessions (which sometimes doesn't work anyway) you can't reset the number of users online.
Well, you can run this query in phpMyAdmin:

TRUNCATE `mybb_sessions`;

That'll log everybody out and end all guest sessions...
(2009-07-20, 10:02 AM)MattRogowski Wrote: [ -> ]Well, you can run this query in phpMyAdmin:

TRUNCATE `mybb_sessions`;

That'll log everybody out and end all guest sessions...

Nice thanks for you reply
I am curious on why you would want to do this.