Hi, some of my users are disconnecting when talking
I find it weird because only a few are, not everybody.
Help?
Hi, some of my users are disconnecting when talking
I find it weird because only a few are, not everybody.
Help?
What emulator are you using? Has this been happening for a long time or did it just start? Any exceptions or packet errors logged?
Its been happening for about 2 days now, a few exceptions have been saved.
Gold Tree Emulator.
Can I suggest you run as a query this next time somebody d.c and ask them to try again
UPDATE users SET last_online = UNIX_TIMESTAMP()
If this works you have 2 options
First edit your registration query to set it as UNIX_TIMESTAMP() instead of something like DD-MM-YY
or
Code something into your client a little like
UPDATE users SET last_online = UNIX_TIMESTAMP() WHERE id = $_SESSION['id']; (maybe a little different depending on your cms but you should get the general idea.