Jump to content

Sockets


imperium2335

Recommended Posts

Is there a way to use PHP sockets to simply detect when a user has disconnected from your server?

 

e.g. When the user arrives on the website/app, a socket connection is made and a flag set in the database indicating they are online, when they leave the socket disconnects and the flag is reset.

 

 

Link to comment
https://forums.phpfreaks.com/topic/253476-sockets/
Share on other sites

I thought of using exec to ping the users ip but not all users are pingable, is that statement true?

 

If it really isn't possible, then an automatic timeout if the user does nothing for 30 minutes is the best method?

 

What about HTML5 Sockets? Again though, not all browsers support HTML5 :(

Link to comment
https://forums.phpfreaks.com/topic/253476-sockets/#findComment-1299387
Share on other sites

I thought of using exec to ping the users ip but not all users are pingable, is that statement true?

 

If it really isn't possible, then an automatic timeout if the user does nothing for 30 minutes is the best method?

 

What about HTML5 Sockets? Again though, not all browsers support HTML5 :(

 

There's lots of weird little hacky methods, but nothing that is reliable and therefore not using.

 

The only way to do it is to use assume they are no longer on the website if the last_active flag is X minutes old. 30 minutes sounds kind of high, especially for an AJAX chat.

Link to comment
https://forums.phpfreaks.com/topic/253476-sockets/#findComment-1299773
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.