I’m building a community website. Users will login and logout as usually.
I use the attribute status online/offline to set the user’s status. But what if a user just clicks the X button or disconnects otherwise without logging out?
Lately my computer crashed, when I opened the site with my laptop I could not login because I don’t allow login in two places. I go to PHPMyAdmin and I see my status still online. Is there any fix for this.
I tried the last_time activitiy thing but that doesn’t work in case of a computer crash! And there was nothing neither interactivity or refresh to update the table.
You don’t need the online/offline flag, you just need to save the last activitity time. When displaying the user status, if last activity time is less than now+15 minutes then user is online, offline otherwise.