R63 Client won't let anyone online

Brad

Well-Known Member
Jun 5, 2012
2,319
992
For some reason It won't let anyone online & keeps saying connection dropped With an IP that isn't registered.
Anyone have any ideas why?
Heres my Client.php
Code:
<?php

require_once 'findretros_config.php';
require_once 'findretros.php';

$FindRetros = new FindRetros();

if($FindRetros->hasClientVoted()) {

    echo 'You have voted!';

}else{

    // echo 'You have yet to vote!';

    $FindRetros->redirectClientToVote();

}
?><!DOCTYPE html>
<html lang="en">
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8">
        <title>{hotelName} - Client</title>
       
        <link rel="shortcut icon" href="{url}/app/tpl/skins/Habbo/web-gallery/v2/favicon.ico" type="image/vnd.microsoft.icon" />
        <link rel="stylesheet" href="{url}/app/tpl/skins/Habbo/styles/client.css?<?php echo time(); ?>" type="text/css">
       
        <script type="text/javascript" src="{url}/app/tpl/skins/Habbo/web-gallery/static/js/swfobject.js"></script>
        <script type="text/javascript">
            var BaseUrl = "http://buzzhotel.biz/swf";
            var flashvars =
            {
                "client.allow.cross.domain" : "1",
        "client.notify.cross.domain" : "1",
        "connection.info.host" : "attackprotect.com",
        "connection.info.port" : "30643",
        "site.url" : "http://buzzhotel.biz",
        "url.prefix" : "http://buzzhotel.biz",
        "client.reload.url" : "http://buzzhotel.biz/client",
        "client.fatal.error.url" : "http://buzzhotel.biz/client_error",
        "client.connection.failed.url" : "http://buzzhotel.biz/client_error", 
        "external.variables.txt" : "http://buzzhotel.biz/swf/gamedata/external_variables.txt",
        "external.texts.txt" : "http://buzzhotel.biz/swf/gamedata/external_flash_texts.txt",
        "productdata.load.url" : "http://buzzhotel.biz/swf/productdata.txt",
        "furnidata.load.url" : "http://buzzhotel.biz/swf/gamedata/furnidata.txt",
        "use.sso.ticket" : "1",
        "sso.ticket" : "{sso}",
        "client.starting" : "Please wait! Buzz is starting up.",
         "flash.client.url" : BaseUrl,
          "flash.client.origin" : "popup"
            };
            var params =
            {
                "base" : BaseUrl + "/",
                "allowScriptAccess" : "always",
                "menu" : "false"               
            };
            swfobject.embedSWF(BaseUrl + "/clientswf.swf", "client", "100%", "100%", "10.0.0", "{swf_folder}/expressInstall.swf", flashvars, params, null);
        </script>
    </head>
   
    <body>
   
        <div id="client"></div>
   
    </body>
</html>
 

Data

Posting Freak
May 19, 2013
593
97
It might be because you use a proxy, it might be dropping the connections using the proxy IP.
If you use phoenix run these SQLs then reboot the emulator.
Code:
UPDATE server_settings SET enable_securesessions = '0';
UPDATE server_settings SET enable_antiddos = '1';
UPDATE server_settings SET ip_lastforbans = '1';
 

Brad

Well-Known Member
Jun 5, 2012
2,319
992
It might be because you use a proxy, it might be dropping the connections using the proxy IP.
If you use phoenix run these SQLs then reboot the emulator.
Code:
UPDATE server_settings SET enable_securesessions = '0';
UPDATE server_settings SET enable_antiddos = '1';
UPDATE server_settings SET ip_lastforbans = '1';
It's not this, I think it's something to do with Phoenix Licence I have it all configured & still same, I'm going to try GTE.
 

Data

Posting Freak
May 19, 2013
593
97
It's not this, I think it's something to do with Phoenix Licence I have it all configured & still same, I'm going to try GTE.
Another possibility is your proxy IP is banned.
Try empty the ban table or just manually remove the proxy IP.
Delete entire table:
Code:
TRUNCATE table bans;

Manually remove proxy IP:
Code:
DELETE * FROM bans WHERE value = '<IP BEING DROPPED HERE>';
 

Brad

Well-Known Member
Jun 5, 2012
2,319
992
Another possibility is your proxy IP is banned.
Try empty the ban table or just manually remove the proxy IP.
Delete entire table:
Code:
TRUNCATE table bans;

Manually remove proxy IP:
Code:
DELETE * FROM bans WHERE value = '<IP BEING DROPPED HERE>';
I'm not using a proxy. lol thanks though, GTE works so it's PHX licence :)
 

Data

Posting Freak
May 19, 2013
593
97
I'm not using a proxy. lol thanks though, GTE works so it's PHX licence :)
In the client.php you posted it includes
Code:
"connection.info.host" : "attackprotect.com",
"connection.info.port" : "30643",
So that is why is said it might be because you use a proxy.
 

Brad

Well-Known Member
Jun 5, 2012
2,319
992
In the client.php you posted it includes
Code:
"connection.info.host" : "attackprotect.com",
"connection.info.port" : "30643",
So that is why is said it might be because you use a proxy.
ohh I thought u ment Me not the client ;)

I have fixed the issue though,

FIND in socketsconnection.cs
Code:
if (String_0 != Licence.smethod_2("http://otaku.cm/phx/override.php", false))
REPLACE WITH
Code:
/*if (String_0 != Licence.smethod_2("http://otaku.cm/phx/override.php", false))*/
 

Brad

Well-Known Member
Jun 5, 2012
2,319
992
ohh I thought u ment Me not the client ;)

I have fixed the issue though,

FIND in socketsconnection.cs
Code:
if (String_0 != Licence.smethod_2("http://otaku.cm/phx/override.php", false))
REPLACE WITH
Code:
/*if (String_0 != Licence.smethod_2("http://otaku.cm/phx/override.php", false))*/
Thats the Fix.
 

Users who are viewing this thread

Top