Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[HELP] Stupid Reload Page

Status
Not open for further replies.
Newbie Spellweaver
Joined
Aug 29, 2013
Messages
57
Reaction score
6
Hello.

So i got this irritating bug that makes me so angry... When the client loads it goes to a stupid reload.php page.
But when i try this in google chrome it all works fine. And its not my computers problem cuz everyone who tries to enter my hotel has this bug :(
 
Newbie Spellweaver
Joined
Aug 29, 2013
Messages
57
Reaction score
6
Here it is:

<!DOCTYPE html><html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>{hotelName} - Client</title>

<link rel="stylesheet" href="{url}/app/tpl/skins/Habbo/styles/client.css" type="text/css">

<script type="text/javascript" src="{url}/app/tpl/skins/Habbo/js/swfobject.js"></script>
<script type="text/javascript">
var BaseUrl = "{swf_folder}";
var flashvars =
{
"client.starting" : "{hotelName} is loading...",
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "{server_ip}",
"connection.info.port" : "30000",
"site.url" : "{url}",
"url.prefix" : "{url}",
"client.reload.url" : "{url}/client",
"client.fatal.error.url" : "{url}/me",
"client.connection.failed.url" : "{url}/me",
"external.variables.txt" : "{external_vars}",
"external.texts.txt" : "{external_texts}",
"productdata.load.url" : "{product_data}",
"furnidata.load.url" : "{furni_data}",
"use.sso.ticket" : "1",
"sso.ticket" : "{sso}",
"processlog.enabled" : "0",
"flash.client.url" : BaseUrl,
"flash.client.origin" : "popup"
};
var params =
{
"base" : BaseUrl + "/",
"allowScriptAccess" : "always",
"menu" : "false"
};
swfobject.embedSWF(BaseUrl + "/Habbo.swf", "client", "100%", "100%", "10.0.0", "{swf_folder}/expressInstall.swf", flashvars, params, null);
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>


<script type="text/javascript">

var id = 48;

$(document).ready(function(){
$.getJSON("http://findretros.com/rankings/vote/D3RP", { id: id, hasVoted: 'unknown' }, function(data) {
if(data == 2) {
window.location.replace("http://findretros.com/rankings/vote/D3RP" + id);
}
});
});

</script>
</head>

<body>
<div id="client"></div>

</body>
</html>
 
Upvote 0
Junior Spellweaver
Joined
Sep 2, 2008
Messages
113
Reaction score
27
Try this... I had the same problem:

Use this below for your {RevCMS!} client.php,
this fixed it for me...
Code:
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8">
        <title>{hotelName}: Client</title>
        
        <link rel="stylesheet" href="http://forum.ragezone.com/{url}/app/tpl/skins/Habbo/styles/client.css" type="text/css">
        
        <script type="text/javascript" src="{url}/app/tpl/skins/Habbo/js/swfobject.js"></script>
        <script type="text/javascript">
            var BaseUrl = "http://yoururlhere/game/";
            var flashvars =
            {
                "client.starting" : "Please wait, {hotelName} is loading...", 
                "client.allow.cross.domain" : "1", 
                "client.notify.cross.domain" : "0",
                "connection.info.host" : "{server_ip}", 
                "connection.info.port" : "30000",
                "site.url" : "http://yoururlhere",
                "url.prefix" : "http://yoururlhere", 
                "client.reload.url" : "http://yoururlhere/client", 
                "client.fatal.error.url" : "http://yoururlhere/client", 
                "client.connection.failed.url" : "http://yoururlhere/client", 
                "external.variables.txt" : "http://yoururlhere/game/gamedata/external_variables/1.xml", 
        "external.texts.txt" : "http://yoururlhere/game/gamedata/external_flash_texts/1.xml", 
        "external.figurepartlist.txt" : "http://yoururlhere/game/gamedata/figuredata/1.xml", 
        "external.override.texts.txt" : "http://yoururlhere/game/gamedata/override/external_flash_override_texts/1.xml", 
        "external.override.variables.txt" : "http://yoururlhere/game/gamedata/override/external_override_variables/1.xml", 
        "productdata.load.url" : "http://yoururlhere/game/gamedata/productdata/1.xml", 
        "furnidata.load.url" : "http://yoururlhere/game/gamedata/furnidata_xml/1.xml", 
                "use.sso.ticket" : "1", 
                "sso.ticket" : "{sso}", 
                "processlog.enabled" : "0", 
                "flash.client.url" : "\//yoururlhere/game/", 
                "flash.client.origin" : "popup",
        "nux.lobbies.enabled" : "true"
            };
            var params =
            {
                "base" : BaseUrl + "/",
                "allowScriptAccess" : "always",
                "menu" : "false"                
            };
            swfobject.embedSWF(BaseUrl + "/Habbo.swf", "client", "100%", "100%", "10.0.0", "http://yoururlhere/game/expressInstall.swf", flashvars, params, null);
        </script>
    </head>
<body></body>
</html>
Replace, "yoururlhere", with your ip or domain name,
which ever you use.
 
Upvote 0
Newbie Spellweaver
Joined
Aug 29, 2013
Messages
57
Reaction score
6
Now i just have a black screen :joyman:



Fixed it :)

I just had to delete the old r63 folder and replace it with a new one :)
 
Last edited:
Upvote 0
Status
Not open for further replies.
Back
Top