I want to make a login system using PHP and MySQL and do it in such a way that every-time only one person is logged into my system at any point of time. If the same user logs in on another window/session/place the old running instance should be invalidated and the new one should be validated.

I am aware that I can get this done by storing the session-id in the database and some routine that checks it and keeps on verifying it constantly periodically or on any database action.

Is there any other way I can accomplish this so that the checks for verification are minimized and I don't have to fire a query on each page refresh to check if the user is in the last logged valid login session.

In short I can summarize that i need a technique so that only my last valid login browser window is served the webapp.

link|improve this question

Just to clarify - do you want only one single session at any one time, or only one session per user? – Paul Dixon Feb 12 '11 at 19:50
I think you have to store them in a database, and check within every page. session_start() must be invoked on every page. As for the "periodical" verification, you can use AJAX to verify every once in a while. – user613857 Feb 12 '11 at 19:51
feedback

3 Answers

up vote 0 down vote accepted

You don't need to have any polling method, in fact you all you need to do is store the session id of any logged in user along with their username in a database.

Then, on each login, simply check if the user logging in already has a stored session. If they do, invalidate that one and store the newly logged in session in a database.

When an old session tries to reconnect to the app, the data for their session will no longer be stored on your server, so they won't be logged in any longer.

All this requires is making an extra check anytime somebody logs in, not any polling method or the like.

link|improve this answer
Presumably, though, after the first session gets invalidated by another login, the user on the first session would get redirected to a login page, log in, and then session #2 gets invalidated, and you end up with duelling logins. – Marc B Feb 12 '11 at 20:07
That seems ok but can you demonstrate a php code to invalidate the old sessions? As for now i got the logic 1)on login check the last stored sessionid 2) invalidate that and store new one – LoneWOLFs Feb 12 '11 at 20:11
yes, but this is the behavior that the requester wants -- only one user logged in at a time. – Jesse Cohen Feb 12 '11 at 20:12
feedback

Every time the user loads a site of your homepage you have to check whether the user is logged in or not. This is always one sql query. So store the session-key along with the user-data and than you can simply add the session-key to the WHERE-clause to identify the user. In this way you have only your one sql query which you have anyway to verfiy that the user is logged in.

link|improve this answer
feedback

Firstly, I'd build this with a database to manage your session policy. If it turns out to be bottleneck, you can optimise then.

If the application runs on a single server, you could perhaps use shared memory (e.g. using APC's apc_store & apc_fetch) to store some state information which can be shared among processes. This could simply store the last-known session id, keyed on the user id. Then you can quickly discover if the current session is still valid.

If you're running on multiple servers, then memcache might be worth a look for achieving something similar.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.