What client.php file i cant find it help?
This is a discussion on How to fix the Last IP (connection dropped) error in Phoenix Emulator within the Habbo Tutorials forums, part of the Habbo Hotel category; Hello there! I've seen alot of people having this problem, where when they connect to there client, it gives them ...

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
What client.php file i cant find it help?
Awesome tutorial, think it's been posted before though. Nonetheless, thanks for sharing it!
Dude im no noob ok i can find the client.php file but this isnt in it:
if (!LOGGED_IN)
{
header("Location: " . WWW. "/login_popup");
exit;
}
So what do i do?
If you're not a noob, you'll see in UberCMS where to add it into;
![]()
:O But its not there :( But its in tpl stuff so i did it now it works some how and my firend needs help for phoenix his doesnt work it says :
>> Connection Dropped [0] from [x.x.x.x.x]
>> Connection [0] from [x.x.x.x.x]
>> Connection Dropped [0] from [x.x.x.x.x]
>> Connection [0] from [x.x.x.x.x]
Exception has been saved
>> Connection Dropped [0] from [x.x.x.x.x]
How can he fix that? it always happens to every user and him
Last edited by iZoom; 29-01-12 at 11:44 AM.
Thanks for this =)