Redirect

ChrisClarke

New Member
Mar 14, 2017
5
0
For my retro, when one clicks the "enter *hotelname*" it redirects then to another client instead of mine. I got the cms and emu from my friend, although I changed everything in the configs, client.php, and me.php to my website's url, which in theory should open my retro's client page when clicking enter. It sounds confusing when explained like this, but to sum it up, my enter button should be going to my client's link, but it redirects to someone else's client link and we can't figure out why.
 

ChrisClarke

New Member
Mar 14, 2017
5
0
The problem is, even when I type in the url for the client, it again redirects me to the other client, which I don't understand how that would happen.
 
Oh, so apparently it only redirects for me, but I don't know why -.-
 

GageDodd

Member
Sep 30, 2014
225
57
<!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" : "Please wait, the hotel is loading",

"client.allow.cross.domain" : "1",

"client.notify.cross.domain" : "0",

"connection.info.host" : "{server_ip}",

"connection.info.port" : "{port}",

"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 + "/Vista.swf", "client", "100%", "100%", "10.0.0", "{swf_folder}/expressInstall.swf", flashvars, params, null);

</script>

</head>



<body>



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



</body>

</html>
 
<!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" : "Please wait, the hotel is loading",

"client.allow.cross.domain" : "1",

"client.notify.cross.domain" : "0",

"connection.info.host" : "{server_ip}",

"connection.info.port" : "1232",

"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>

</head>



<body>



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



</body>

</html>
 
use the second one sorry
 

Users who are viewing this thread

Top