Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm not sure what would be the easiest way to do this. I need to be able to detect what users are online on my website. So when people are viewing a thread or something it will say next to the users name if they are ONLINE or OFFLINE. And at bottom of forum index it will say all the users who are online.

What would be the easiest approach to do something like this? I'm not sure if I will need a Javascript which would run every time a page loads or what.

Thanks :)

share|improve this question
3  
Don't use Javascript for this. – drudge Nov 1 '10 at 21:46
Which forum and version are you using? If something pre-made like IBP/InvisionFree, or PHPBB, etc, then this functionality usually exists already in your forum control panel. – rlb.usa Nov 1 '10 at 21:47
1  
I'm custom coding my own forum. :) – Cory Nov 2 '10 at 0:15

3 Answers

  • have a MySQL database with a user table
  • have a column in that user table which saves the "last seen"-time
  • update that column on every page request
  • when checking for online or offline, check if current time minus "last seen"-time is greater than some treshold you like

Edit: You could optionally make a javascript "ping" the server (request an empty page) every two minutes or so if you want people idling with your Website open to be displayed as online, too.

share|improve this answer
1  
yeah this is probably the best approach – Breezer Nov 1 '10 at 21:49
Exactly what I was thinking. As I was going to have a last seen time. And set online to last seen within 5 minutes or so. Didn't know if that was the best approach though. – Cory Nov 1 '10 at 21:49
When do you think the last seen column should update? Every page load? – Cory Nov 1 '10 at 21:50
@Cory: That's what I would do. – thejh Nov 1 '10 at 21:52
2  
Regarding this solution's edit: If you decide to ping the server to keep track of "who's online," you may wish to consider update the pinger's "last-seen" entry to reflect this. There are pros and cons to this: It will prevent people who are idling from also timing out their "last-seen", but it will also allow people to walk away from an open browser and continue to appear online when they are not. Your choice. – DeathMagus Nov 1 '10 at 21:58
show 5 more comments

One approach is to store your users sessions in a database or another store like memchached (or ideally both http://stackoverflow.com/questions/76712). Then you just look up the user in your store and see if their session is still active.

A solution like this: http://pureform.wordpress.com/2009/04/08/memcache-mysql-php-session-handler/

share|improve this answer

You need to hold some kind of a "session" table, where you hold the user and the time of when they visited a page.

If the time is older then 5 minutes the user is offline (and the row can be deleted). The other users in the session table are "online".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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