Got it from php.net, but I am not sure is this how everybody destroy all sessions?
// Unset all Sessions $_SESSION = array(); if (isset($_COOKIE[session_nam
This only destroys the current users session, not all the other users session.
Try using the session_save_path() to find out where the session data is being stored, and then delete all the files there.