[HELP] RevCMS Client Redirecting to /me

Joshie

WebHost Founder
May 29, 2015
143
20
Good evening,
So it turns out I have not found a solution to my problems.
before I give you the code to my client.php, config is all setup correctly, including the variables.. I've double checked everything and I have no clue.
It loads to 50% and reloads to the /me page
Code:
        <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" : "Please wait, {hotelName} is loading",
                "client.allow.cross.domain" : "1",
                "client.notify.cross.domain" : "0",
                "connection.info.host" : "{ip hidden}",
                "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>
 

Gang67

|Jump out gang, we jump out those vehicles|
May 5, 2017
303
54
Good evening,
So it turns out I have not found a solution to my problems.
before I give you the code to my client.php, config is all setup correctly, including the variables.. I've double checked everything and I have no clue.
It loads to 50% and reloads to the /me page
Code:
        <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" : "Please wait, {hotelName} is loading",
                "client.allow.cross.domain" : "1",
                "client.notify.cross.domain" : "0",
                "connection.info.host" : "{ip hidden}",
                "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>
Is the production the correct one in your config.php. You can try open up the console and see if it shows anything when it does reload you
 

Clif

Member
Jan 13, 2016
51
4
Good evening,
So it turns out I have not found a solution to my problems.
before I give you the code to my client.php, config is all setup correctly, including the variables.. I've double checked everything and I have no clue.
It loads to 50% and reloads to the /me page
Code:
        <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" : "Please wait, {hotelName} is loading",
                "client.allow.cross.domain" : "1",
                "client.notify.cross.domain" : "0",
                "connection.info.host" : "{ip hidden}",
                "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>
Be sure to recheck your emulator files, just a tip.
 

Kak

Posting Freak
Apr 21, 2017
951
165
your client.php file is missing overrides and a few other variables for r63b client. try using the client.php from my tutorial thread. i tbh cant paste it.
 

Joshie

WebHost Founder
May 29, 2015
143
20
Thanks for the reply, that seemed to do the trick, but now it's 76%. I may sound like a noob but I've done what you normally do to resolve that issue and it seems to not be responding to those changes.
 

Kak

Posting Freak
Apr 21, 2017
951
165
Thanks for the reply, that seemed to do the trick, but now it's 76%. I may sound like a noob but I've done what you normally do to resolve that issue and it seems to not be responding to those changes.
well did u be sure to edit it? changing "swfs" to your swf folder name and the production name if its not the same? also the connection host but im sure you knew that.
 
also make sure u keep them defined as (url) dont change the codes to your hotel link
 

Gang67

|Jump out gang, we jump out those vehicles|
May 5, 2017
303
54
Thanks for the reply, that seemed to do the trick, but now it's 76%. I may sound like a noob but I've done what you normally do to resolve that issue and it seems to not be responding to those changes.
Have you actually set the override variables up
 

Users who are viewing this thread

Top