Hello there! I've seen alot of people having this problem, where when they connect to there client, it gives them a error in there emulator, witch is known as - Connection dropped or Last IP error, I'm pretty sure there the same.. Well here's a fix!
If you're using UberCMS, you have to execute a SQL update witch updates the users Last IP, then loads the client, and ensures that the client loads successfully and secure.
In your client.php file, look for:
After that, add the line of code:PHP Code:if (!LOGGED_IN)
{
header("Location: " . WWW. "/login_popup");
exit;
}
Like so:PHP Code:// Last IP update
dbquery("UPDATE users SET ip_last = '".$_SERVER['REMOTE_ADDR']."' WHERE username = '".USER_NAME."'");
This should fix the error(s) you have when it comes to the Last IP error!
If you find any more problems, please PM me, I will help all I can








