Log in

View Full Version : force logging off member(s)


ka99
01-24-2017, 02:21 PM
Greetings..

I'm using 3.8 and would like to know if there is anyway to force logging off member(s) using MySQL command or any other way..

TIA.

blind-eddie
01-24-2017, 02:34 PM
Here is some info.

https://vborg.vbsupport.ru/showthread.php?t=163327

https://www.vbulletin.com/forum/forum/vbulletin-5-connect/vbulletin-5-connect-questions-problems-troubleshooting/vbulletin-5-support-issues-questions/4131866-how-to-bump-off-a-member-online

https://www.vbulletin.com/forum/forum/vbulletin-legacy-versions-products/legacy-vbulletin-versions/vbulletin-2-how-do-i-and-troubleshooting/43756-is-there-any-way-to-force-logout-any-member

Lynne
01-24-2017, 03:08 PM
You could also log everyone out at once by changing the cookie prefix in your /includes/config.php file.

Paul M
01-24-2017, 06:59 PM
Why do you want to log off people by force ?

TheLastSuperman
01-25-2017, 01:14 AM
To easily log out everyone simply run the query:

Truncate TABLE session;

Everyone will be logged off and if they were editing or typing a post that will be lost as well (fyi).

Paul M
01-25-2017, 02:31 AM
If users logged in with "remember me", that wont really do anything, vb will just [silently] create a new session.

ka99
01-25-2017, 02:36 AM
Here is some info.

https://vborg.vbsupport.ru/showthread.php?t=163327

https://www.vbulletin.com/forum/forum/vbulletin-5-connect/vbulletin-5-connect-questions-problems-troubleshooting/vbulletin-5-support-issues-questions/4131866-how-to-bump-off-a-member-online

https://www.vbulletin.com/forum/forum/vbulletin-legacy-versions-products/legacy-vbulletin-versions/vbulletin-2-how-do-i-and-troubleshooting/43756-is-there-any-way-to-force-logout-any-member



Thanks..


the first product works as I need, but I need a way to do it from the shell..


so, I'm looking for implementing http://xxxx/vb/login.php?do=loguserout&u=999 in the shell with MySQL


Regards.

--------------- Added 1485319148 at 1485319148 ---------------

To easily log out everyone simply run the query:

Truncate TABLE session;Everyone will be logged off and if they were editing or typing a post that will be lost as well (fyi).



I really don't want to do that, just want one/more members annoying others and thought the best way is to find a way to log them off whenever they login for sometime (not banning them)


Thanks

blind-eddie
01-25-2017, 02:45 AM
vboptions/User Banning Options, scroll down to Tachy Goes to Coventry, great way to to shut them up for a bit or if you really want to mess with their head use Pauls Miserable Users (https://vborg.vbsupport.ru/showthread.php?t=165961).

Have fun!

ka99
01-25-2017, 04:03 AM
vboptions/User Banning Options, scroll down to Tachy Goes to Coventry, great way to to shut them up for a bit or if you really want to mess with their head use Pauls Miserable Users (https://vborg.vbsupport.ru/showthread.php?t=165961).

Have fun!

I never noticed the option you mentioned, will give it a try, thou I prefer doing it through the shell


Thanks for the help.


Regards.