Jump to content

Logout a user (clear their session)


NeoMarine

Recommended Posts

How can I force a user to be logged out (clear their session)?

 

If I typed:

 

unset($_SESSION['user']);

 

This would only log ME out. How can I log out someone else? I require this for the purpose of being able to change users "username" - which means they need to be force-logged out when I change it.

Link to comment
Share on other sites

Short answer, you cannot. As the session hash is held on their computer.

 

Long answer, you can if you set each user's session id in the DB in a "sessions" table. Once you log someone else out you pull out that record then you would most likely have to manually delete that file from the sessions folder.

 

The other option is, you do the similar thing with the DB, but instead of you pulling it out, set an item in there that is "logout" if that is set to true the next time that user loads a page you check that entry and if it is set, you log them out.

 

Those are the only ways I can think of, the "logout" field in the session table of the DB would probably be the best way to go.

Link to comment
Share on other sites

Simple login systems where you only store a value in a session to indicate someone is logged in cannot directly support more advanced administrative functions like changing usernames, disabling accounts...

 

To support administrative functions like changing a username or logging someone out (which is not actually necessary to change a username) or disabling an account (using the simplest more straight forward universal coding), you need a login system that checks the user table on each page visit to see if the "status" of the user has been changed and to take the necessary action.

 

To "graft" a way of handling a username change onto your existing simple system will probably take the same amount of coding and testing as to change your login system so that it is checking the user table for administrative operations on each page visit.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.