0

I've got a PHP site and Plesk and I'm looking to destroy all the sessions (log out all users). How do I do this in Plesk or would I have to manually remove the files?

typeoneerror
  • 287
  • 1
  • 12

1 Answers1

1

Login to the Plesk database with:

"mysql -uadmin -pcat /etc/psa/.psa.shadow psa"

And delete all records in sessions table with delete from sessions;

That's it.