PHP Session Save Path
You can find the session.save_path
through php info or using the command line:
php -i | grep session
session.save_path => /var/lib/php/session
Once you have that, you clear PHP sessions by going into that path and clearing out the relevant session files.
No Comments