Problema risolto Alcuni quesiti

Stato
Discussione chiusa ad ulteriori risposte.
Giuseppe14739 Giuseppe14739 OK, quindi suppongo sia installato XAMPP, giusto?
esattamente
Ok allora una volta avviato Apache e MySQL, vai nella barra di ricerca e cerca "Windows Firewall".
View attachment 1697
ci sono devo disabilitare tutto?
Allora, disabilitare tutto non conviene mai. Quindi vai in "Advanced settings", poi a Destra "make new rule" o una cosa di questo tipo. Seleziona "Port" e inserisci "TCP" e "80" come valore. Dopodichè dovrebbe andare.
EDIT: non so se l'hai disabilitato, comunque ora va, però è un Redirect.
Grazie mille ora va, ma tramite Ip non tramite Dominio !! :emoji_smiley: dai un passo l'abbiamo fatto
 
Giuseppe14739 Giuseppe14739 OK, quindi suppongo sia installato XAMPP, giusto?
esattamente
Ok allora una volta avviato Apache e MySQL, vai nella barra di ricerca e cerca "Windows Firewall".
View attachment 1697
ci sono devo disabilitare tutto?
Allora, disabilitare tutto non conviene mai. Quindi vai in "Advanced settings", poi a Destra "make new rule" o una cosa di questo tipo. Seleziona "Port" e inserisci "TCP" e "80" come valore. Dopodichè dovrebbe andare.
EDIT: non so se l'hai disabilitato, comunque ora va, però è un Redirect.
Grazie mille ora va, ma tramite Ip non tramite Dominio !! :emoji_smiley: dai un passo l'abbiamo fatto
Come dicevo, è un REDIRECT. Quindi non utilizza il dominio stesso ma attraverso il dominio porta all'indirizzo IP. Questo può essere un problema legato sempre alla gestione del dominio. Che impostazioni ti fa modificare il tuo registrar? (colui che ti ha venduto il dominio in sintesi)
 
Giuseppe14739 Giuseppe14739 OK, quindi suppongo sia installato XAMPP, giusto?
esattamente
Ok allora una volta avviato Apache e MySQL, vai nella barra di ricerca e cerca "Windows Firewall".
View attachment 1697
ci sono devo disabilitare tutto?
Allora, disabilitare tutto non conviene mai. Quindi vai in "Advanced settings", poi a Destra "make new rule" o una cosa di questo tipo. Seleziona "Port" e inserisci "TCP" e "80" come valore. Dopodichè dovrebbe andare.
EDIT: non so se l'hai disabilitato, comunque ora va, però è un Redirect.
Grazie mille ora va, ma tramite Ip non tramite Dominio !! :emoji_smiley: dai un passo l'abbiamo fatto
Come dicevo, è un REDIRECT. Quindi non utilizza il dominio stesso ma attraverso il dominio porta all'indirizzo IP. Questo può essere un problema legato sempre alla gestione del dominio. Che impostazioni ti fa modificare il tuo registrar? (colui che ti ha venduto il dominio in sintesi)
il dominio l'ho preso da Aruba penso che mi farebbe fare tutto ciò che serve ma sono impedito comunque ora provando il client si ferma al 76% quando in locale parte tranquillamente
 
Giuseppe14739 Giuseppe14739 OK, quindi suppongo sia installato XAMPP, giusto?
esattamente
Ok allora una volta avviato Apache e MySQL, vai nella barra di ricerca e cerca "Windows Firewall".
View attachment 1697
ci sono devo disabilitare tutto?
Allora, disabilitare tutto non conviene mai. Quindi vai in "Advanced settings", poi a Destra "make new rule" o una cosa di questo tipo. Seleziona "Port" e inserisci "TCP" e "80" come valore. Dopodichè dovrebbe andare.
EDIT: non so se l'hai disabilitato, comunque ora va, però è un Redirect.
Grazie mille ora va, ma tramite Ip non tramite Dominio !! :emoji_smiley: dai un passo l'abbiamo fatto
Come dicevo, è un REDIRECT. Quindi non utilizza il dominio stesso ma attraverso il dominio porta all'indirizzo IP. Questo può essere un problema legato sempre alla gestione del dominio. Che impostazioni ti fa modificare il tuo registrar? (colui che ti ha venduto il dominio in sintesi)
il dominio l'ho preso da Aruba penso che mi farebbe fare tutto ciò che serve ma sono impedito comunque ora provando il client si ferma al 76% quando in locale parte tranquillamente
Allora è come dice Cristoforo58 Cristoforo58 . Il problema è nei settaggi del CMS. Prova a inviare i file di configurazione del CMS.

EDIT: il file client dove c'è scritto
JavaScript:
Perfavore, Entra oppure Registrati per vedere i codici!
devi scrivere
JavaScript:
Perfavore, Entra oppure Registrati per vedere i codici!
 
Per il problema del reindirizzamento è probabile che non hai modificato la path nel config.php del CMS.
Per il client, posta il client.php
 
<?php
staffCheck();
Game::sso('client');
// Game::homeRoom(); ESTO LO DESACTIVO PARA QUE VAYA A LOS TERRITORIOS.
?>
<html>
</body>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title><?= User::userData('username')?> <?= $config['hotelName'] ?></title>
<link rel="shortcut icon" type="image/x-icon" href="<?php echo H. $config['skin']; ?>/favicon.png"/>
<script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-latest.js" type="text/javascript"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-ui.js" type="text/javascript"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/flashclient.js"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/flash_detect_min.js"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/client.js" type="text/javascript"></script>
</head>
<body>

<div class="client__buttons" style="left: 50px;">
<button ngsf-toggle-fullscreen="" class="client__fullscreen" onclick="resizeClient()"><b><i class="fa fa-snowflake-o " aria-hidden="true"></i> <?= $lang["descongelar"] ?></b></button>
</div>




<div id="client-ui" onclick="resizeClient()" ngsf-toggle-fullscreen="">
<div id="client" style='position:absolute; left:0; right:0; top:0; bottom:0; overflow:hidden; height:100%; width:100%;'></div>
</div>
<script>
var Client = new SWFObject("<?= $hotel['swfFolderSwf'] ?>", "client", "100%", "100%", "10.0.0");
Client.addVariable("client.allow.cross.domain", "0");
Client.addVariable("client.notify.cross.domain", "1");
Client.addVariable("connection.info.host", "178.239.162.26");
Client.addVariable("connection.info.port", "<?= $hotel['emuPort'] ?>");
Client.addVariable("site.url", "<?= $config['hotelUrl'] ?>");
Client.addVariable("url.prefix", "<?= $config['hotelUrl'] ?>");
Client.addVariable("client.reload.url", "<?= $config['hotelUrl'] ?>/me");
Client.addVariable("client.fatal.error.url", "<?= $config['hotelUrl'] ?>/me");
Client.addVariable("client.connection.failed.url", "<?= $config['hotelUrl'] ?>/me");
Client.addVariable("external.override.texts.txt", "<?= $hotel['external_Texts_Override'] ?>");
Client.addVariable("external.override.variables.txt", "<?= $hotel['external_Variables_Override'] ?>");
Client.addVariable("external.variables.txt", "<?= $hotel['external_Variables'] ?>");
Client.addVariable("external.texts.txt", "<?= $hotel['external_Texts'] ?>");
Client.addVariable("external.figurepartlist.txt", "<?= $hotel['figuredata'] ?>");
Client.addVariable("flash.dynamic.avatar.download.configuration", "<?= $hotel['figuremap'] ?>");
Client.addVariable("productdata.load.url", "<?= $hotel['productdata'] ?>");
Client.addVariable("furnidata.load.url", "<?= $hotel['furnidata'] ?>");
Client.addVariable("use.sso.ticket", "1");
Client.addVariable("sso.ticket", "<?= User::userData('auth_ticket') ?>");
Client.addVariable("processlog.enabled", "0");
Client.addVariable("client.starting", "<?= $hotel['swftitle'] ?>");
Client.addVariable("flash.client.url", "<?= $hotel['swfFolder'] ?>/");
Client.addVariable("flash.client.origin", "popup");
Client.addVariable("nux.lobbies.enabled", "true");
Client.addVariable("country_code", "NL");
Client.addParam('base', '<?= $hotel['swfFolder'] ?>/');
Client.addParam('allowScriptAccess', 'always');
Client.addParam('menu', false);
Client.addParam('wmode', "opaque");
Client.write('client');


FlashExternalInterface.signoutUrl = "<?= $config['hotelUrl'] ?>/logout";
</script>

<script>
//Usuário sem Adobe Flash Player
if(!FlashDetect.installed){
window.location.href = "<?= $config['hotelUrl'] ?>/noflash";
}
</script>
</head>
<script type="text/javascript">
function toggleFullScreen() {
if ((document.fullScreenElement && document.fullScreenElement !== null) ||
(!document.mozFullScreen && !document.webkitIsFullScreen)) {
if (document.documentElement.requestFullScreen) {
document.documentElement.requestFullScreen();
} else if (document.documentElement.mozRequestFullScreen) {
document.documentElement.mozRequestFullScreen();
} else if (document.documentElement.webkitRequestFullScreen) {
document.documentElement.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
}
} else {
if (document.cancelFullScreen) {
document.cancelFullScreen();
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen();
} else if (document.webkitCancelFullScreen) {
document.webkitCancelFullScreen();
}
}
}
</script>
<script type="text/javascript">
function resizeClient(){
var theClient = document.getElementById('client');
var theWidth = theClient.clientWidth;
theClient.style.width = "10px";
theClient.style.width = theWidth + "px";
}
</script>
<style>
.client__buttons {
left: 12px;
position: absolute;
top: -3px;
z-index: 630;
border-radius: 5px;
}
.client__buttons button {
box-shadow: 0 3px 0 1px rgba(0,0,0,.3);
background-color: #292929;
border-color: #41403d;
padding: 9px 2px;
width: 200px;
display: block;
border-radius: 5px;
float: left;
padding-left: 6px;
padding-right: 6px;
line-height: 1.2;
color: #b9b9b9;
font-size: 12px;
border-style: solid;
margin-bottom: 4px;
text-align: center;
outline: none;
}
.client__buttons button:hover{
-webkit-animation-name:shakeit;
-webkit-animation-duration:1s;
-webkit-animation-timing-function:linear;
-webkit-animation-iteration-count:infinite;
animation-name:shakeit;
animation-duration:1s;
animation-timing-function:linear;
animation-iteration-count:infinite;}
@keyframes shakeit{0%{transform:rotate(0deg) translate(2px,1px);}
10%{transform:rotate(10deg) translate(1px,2px);}
20%{transform:rotate(-10deg) translate(3px,0px);}
30%{transform:rotate(0deg) translate(0px,-2px);}
40%{transform:rotate(-10deg) translate(-1px,1px);}
50%{transform:rotate(10deg) translate(1px,-2px);}
60%{transform:rotate(0deg) translate(3px,-1px);}
70%{transform:rotate(10deg) translate(-2px,-1px);}
80%{transform:rotate(-10deg) translate(1px,1px);}
90%{transform:rotate(0deg) translate(-2px,-2px);}
100%{transform:rotate(10deg) translate(-1px,2px);}
} </style>
Scusa la domanda stupida, ma per caso hai configurato ed avviato l'emulatore?
 
<?php
staffCheck();
Game::sso('client');
// Game::homeRoom(); ESTO LO DESACTIVO PARA QUE VAYA A LOS TERRITORIOS.
?>
<html>
</body>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title><?= User::userData('username')?> <?= $config['hotelName'] ?></title>
<link rel="shortcut icon" type="image/x-icon" href="<?php echo H. $config['skin']; ?>/favicon.png"/>
<script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-latest.js" type="text/javascript"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-ui.js" type="text/javascript"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/flashclient.js"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/flash_detect_min.js"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/client.js" type="text/javascript"></script>
</head>
<body>

<div class="client__buttons" style="left: 50px;">
<button ngsf-toggle-fullscreen="" class="client__fullscreen" onclick="resizeClient()"><b><i class="fa fa-snowflake-o " aria-hidden="true"></i> <?= $lang["descongelar"] ?></b></button>
</div>




<div id="client-ui" onclick="resizeClient()" ngsf-toggle-fullscreen="">
<div id="client" style='position:absolute; left:0; right:0; top:0; bottom:0; overflow:hidden; height:100%; width:100%;'></div>
</div>
<script>
var Client = new SWFObject("<?= $hotel['swfFolderSwf'] ?>", "client", "100%", "100%", "10.0.0");
Client.addVariable("client.allow.cross.domain", "0");
Client.addVariable("client.notify.cross.domain", "1");
Client.addVariable("connection.info.host", "178.239.162.26");
Client.addVariable("connection.info.port", "<?= $hotel['emuPort'] ?>");
Client.addVariable("site.url", "<?= $config['hotelUrl'] ?>");
Client.addVariable("url.prefix", "<?= $config['hotelUrl'] ?>");
Client.addVariable("client.reload.url", "<?= $config['hotelUrl'] ?>/me");
Client.addVariable("client.fatal.error.url", "<?= $config['hotelUrl'] ?>/me");
Client.addVariable("client.connection.failed.url", "<?= $config['hotelUrl'] ?>/me");
Client.addVariable("external.override.texts.txt", "<?= $hotel['external_Texts_Override'] ?>");
Client.addVariable("external.override.variables.txt", "<?= $hotel['external_Variables_Override'] ?>");
Client.addVariable("external.variables.txt", "<?= $hotel['external_Variables'] ?>");
Client.addVariable("external.texts.txt", "<?= $hotel['external_Texts'] ?>");
Client.addVariable("external.figurepartlist.txt", "<?= $hotel['figuredata'] ?>");
Client.addVariable("flash.dynamic.avatar.download.configuration", "<?= $hotel['figuremap'] ?>");
Client.addVariable("productdata.load.url", "<?= $hotel['productdata'] ?>");
Client.addVariable("furnidata.load.url", "<?= $hotel['furnidata'] ?>");
Client.addVariable("use.sso.ticket", "1");
Client.addVariable("sso.ticket", "<?= User::userData('auth_ticket') ?>");
Client.addVariable("processlog.enabled", "0");
Client.addVariable("client.starting", "<?= $hotel['swftitle'] ?>");
Client.addVariable("flash.client.url", "<?= $hotel['swfFolder'] ?>/");
Client.addVariable("flash.client.origin", "popup");
Client.addVariable("nux.lobbies.enabled", "true");
Client.addVariable("country_code", "NL");
Client.addParam('base', '<?= $hotel['swfFolder'] ?>/');
Client.addParam('allowScriptAccess', 'always');
Client.addParam('menu', false);
Client.addParam('wmode', "opaque");
Client.write('client');


FlashExternalInterface.signoutUrl = "<?= $config['hotelUrl'] ?>/logout";
</script>

<script>
//Usuário sem Adobe Flash Player
if(!FlashDetect.installed){
window.location.href = "<?= $config['hotelUrl'] ?>/noflash";
}
</script>
</head>
<script type="text/javascript">
function toggleFullScreen() {
if ((document.fullScreenElement && document.fullScreenElement !== null) ||
(!document.mozFullScreen && !document.webkitIsFullScreen)) {
if (document.documentElement.requestFullScreen) {
document.documentElement.requestFullScreen();
} else if (document.documentElement.mozRequestFullScreen) {
document.documentElement.mozRequestFullScreen();
} else if (document.documentElement.webkitRequestFullScreen) {
document.documentElement.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
}
} else {
if (document.cancelFullScreen) {
document.cancelFullScreen();
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen();
} else if (document.webkitCancelFullScreen) {
document.webkitCancelFullScreen();
}
}
}
</script>
<script type="text/javascript">
function resizeClient(){
var theClient = document.getElementById('client');
var theWidth = theClient.clientWidth;
theClient.style.width = "10px";
theClient.style.width = theWidth + "px";
}
</script>
<style>
.client__buttons {
left: 12px;
position: absolute;
top: -3px;
z-index: 630;
border-radius: 5px;
}
.client__buttons button {
box-shadow: 0 3px 0 1px rgba(0,0,0,.3);
background-color: #292929;
border-color: #41403d;
padding: 9px 2px;
width: 200px;
display: block;
border-radius: 5px;
float: left;
padding-left: 6px;
padding-right: 6px;
line-height: 1.2;
color: #b9b9b9;
font-size: 12px;
border-style: solid;
margin-bottom: 4px;
text-align: center;
outline: none;
}
.client__buttons button:hover{
-webkit-animation-name:shakeit;
-webkit-animation-duration:1s;
-webkit-animation-timing-function:linear;
-webkit-animation-iteration-count:infinite;
animation-name:shakeit;
animation-duration:1s;
animation-timing-function:linear;
animation-iteration-count:infinite;}
@keyframes shakeit{0%{transform:rotate(0deg) translate(2px,1px);}
10%{transform:rotate(10deg) translate(1px,2px);}
20%{transform:rotate(-10deg) translate(3px,0px);}
30%{transform:rotate(0deg) translate(0px,-2px);}
40%{transform:rotate(-10deg) translate(-1px,1px);}
50%{transform:rotate(10deg) translate(1px,-2px);}
60%{transform:rotate(0deg) translate(3px,-1px);}
70%{transform:rotate(10deg) translate(-2px,-1px);}
80%{transform:rotate(-10deg) translate(1px,1px);}
90%{transform:rotate(0deg) translate(-2px,-2px);}
100%{transform:rotate(10deg) translate(-1px,2px);}
} </style>
Scusa la domanda stupida, ma per caso hai configurato ed avviato l'emulatore?
certamente se in locale mi funge XD
 
<?php
staffCheck();
Game::sso('client');
// Game::homeRoom(); ESTO LO DESACTIVO PARA QUE VAYA A LOS TERRITORIOS.
?>
<html>
</body>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title><?= User::userData('username')?> <?= $config['hotelName'] ?></title>
<link rel="shortcut icon" type="image/x-icon" href="<?php echo H. $config['skin']; ?>/favicon.png"/>
<script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-latest.js" type="text/javascript"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-ui.js" type="text/javascript"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/flashclient.js"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/flash_detect_min.js"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/client.js" type="text/javascript"></script>
</head>
<body>

<div class="client__buttons" style="left: 50px;">
<button ngsf-toggle-fullscreen="" class="client__fullscreen" onclick="resizeClient()"><b><i class="fa fa-snowflake-o " aria-hidden="true"></i> <?= $lang["descongelar"] ?></b></button>
</div>




<div id="client-ui" onclick="resizeClient()" ngsf-toggle-fullscreen="">
<div id="client" style='position:absolute; left:0; right:0; top:0; bottom:0; overflow:hidden; height:100%; width:100%;'></div>
</div>
<script>
var Client = new SWFObject("<?= $hotel['swfFolderSwf'] ?>", "client", "100%", "100%", "10.0.0");
Client.addVariable("client.allow.cross.domain", "0");
Client.addVariable("client.notify.cross.domain", "1");
Client.addVariable("connection.info.host", "178.239.162.26");
Client.addVariable("connection.info.port", "<?= $hotel['emuPort'] ?>");
Client.addVariable("site.url", "<?= $config['hotelUrl'] ?>");
Client.addVariable("url.prefix", "<?= $config['hotelUrl'] ?>");
Client.addVariable("client.reload.url", "<?= $config['hotelUrl'] ?>/me");
Client.addVariable("client.fatal.error.url", "<?= $config['hotelUrl'] ?>/me");
Client.addVariable("client.connection.failed.url", "<?= $config['hotelUrl'] ?>/me");
Client.addVariable("external.override.texts.txt", "<?= $hotel['external_Texts_Override'] ?>");
Client.addVariable("external.override.variables.txt", "<?= $hotel['external_Variables_Override'] ?>");
Client.addVariable("external.variables.txt", "<?= $hotel['external_Variables'] ?>");
Client.addVariable("external.texts.txt", "<?= $hotel['external_Texts'] ?>");
Client.addVariable("external.figurepartlist.txt", "<?= $hotel['figuredata'] ?>");
Client.addVariable("flash.dynamic.avatar.download.configuration", "<?= $hotel['figuremap'] ?>");
Client.addVariable("productdata.load.url", "<?= $hotel['productdata'] ?>");
Client.addVariable("furnidata.load.url", "<?= $hotel['furnidata'] ?>");
Client.addVariable("use.sso.ticket", "1");
Client.addVariable("sso.ticket", "<?= User::userData('auth_ticket') ?>");
Client.addVariable("processlog.enabled", "0");
Client.addVariable("client.starting", "<?= $hotel['swftitle'] ?>");
Client.addVariable("flash.client.url", "<?= $hotel['swfFolder'] ?>/");
Client.addVariable("flash.client.origin", "popup");
Client.addVariable("nux.lobbies.enabled", "true");
Client.addVariable("country_code", "NL");
Client.addParam('base', '<?= $hotel['swfFolder'] ?>/');
Client.addParam('allowScriptAccess', 'always');
Client.addParam('menu', false);
Client.addParam('wmode', "opaque");
Client.write('client');


FlashExternalInterface.signoutUrl = "<?= $config['hotelUrl'] ?>/logout";
</script>

<script>
//Usuário sem Adobe Flash Player
if(!FlashDetect.installed){
window.location.href = "<?= $config['hotelUrl'] ?>/noflash";
}
</script>
</head>
<script type="text/javascript">
function toggleFullScreen() {
if ((document.fullScreenElement && document.fullScreenElement !== null) ||
(!document.mozFullScreen && !document.webkitIsFullScreen)) {
if (document.documentElement.requestFullScreen) {
document.documentElement.requestFullScreen();
} else if (document.documentElement.mozRequestFullScreen) {
document.documentElement.mozRequestFullScreen();
} else if (document.documentElement.webkitRequestFullScreen) {
document.documentElement.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
}
} else {
if (document.cancelFullScreen) {
document.cancelFullScreen();
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen();
} else if (document.webkitCancelFullScreen) {
document.webkitCancelFullScreen();
}
}
}
</script>
<script type="text/javascript">
function resizeClient(){
var theClient = document.getElementById('client');
var theWidth = theClient.clientWidth;
theClient.style.width = "10px";
theClient.style.width = theWidth + "px";
}
</script>
<style>
.client__buttons {
left: 12px;
position: absolute;
top: -3px;
z-index: 630;
border-radius: 5px;
}
.client__buttons button {
box-shadow: 0 3px 0 1px rgba(0,0,0,.3);
background-color: #292929;
border-color: #41403d;
padding: 9px 2px;
width: 200px;
display: block;
border-radius: 5px;
float: left;
padding-left: 6px;
padding-right: 6px;
line-height: 1.2;
color: #b9b9b9;
font-size: 12px;
border-style: solid;
margin-bottom: 4px;
text-align: center;
outline: none;
}
.client__buttons button:hover{
-webkit-animation-name:shakeit;
-webkit-animation-duration:1s;
-webkit-animation-timing-function:linear;
-webkit-animation-iteration-count:infinite;
animation-name:shakeit;
animation-duration:1s;
animation-timing-function:linear;
animation-iteration-count:infinite;}
@keyframes shakeit{0%{transform:rotate(0deg) translate(2px,1px);}
10%{transform:rotate(10deg) translate(1px,2px);}
20%{transform:rotate(-10deg) translate(3px,0px);}
30%{transform:rotate(0deg) translate(0px,-2px);}
40%{transform:rotate(-10deg) translate(-1px,1px);}
50%{transform:rotate(10deg) translate(1px,-2px);}
60%{transform:rotate(0deg) translate(3px,-1px);}
70%{transform:rotate(10deg) translate(-2px,-1px);}
80%{transform:rotate(-10deg) translate(1px,1px);}
90%{transform:rotate(0deg) translate(-2px,-2px);}
100%{transform:rotate(10deg) translate(-1px,2px);}
} </style>
Scusa la domanda stupida, ma per caso hai configurato ed avviato l'emulatore?
certamente se in locale mi funge XD
Puoi inviare anche il file di configurazione dell'emulatore?

EDIT:
Modifica questo
PHP:
Perfavore, Entra oppure Registrati per vedere i codici!

con questo per risolvere il problema del dominio:

PHP:
Perfavore, Entra oppure Registrati per vedere i codici!
 
<?php
staffCheck();
Game::sso('client');
// Game::homeRoom(); ESTO LO DESACTIVO PARA QUE VAYA A LOS TERRITORIOS.
?>
<html>
</body>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title><?= User::userData('username')?> <?= $config['hotelName'] ?></title>
<link rel="shortcut icon" type="image/x-icon" href="<?php echo H. $config['skin']; ?>/favicon.png"/>
<script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-latest.js" type="text/javascript"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-ui.js" type="text/javascript"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/flashclient.js"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/flash_detect_min.js"></script>
<script src="<?php echo H. $config['skin']; ?>/assets/client/client.js" type="text/javascript"></script>
</head>
<body>

<div class="client__buttons" style="left: 50px;">
<button ngsf-toggle-fullscreen="" class="client__fullscreen" onclick="resizeClient()"><b><i class="fa fa-snowflake-o " aria-hidden="true"></i> <?= $lang["descongelar"] ?></b></button>
</div>




<div id="client-ui" onclick="resizeClient()" ngsf-toggle-fullscreen="">
<div id="client" style='position:absolute; left:0; right:0; top:0; bottom:0; overflow:hidden; height:100%; width:100%;'></div>
</div>
<script>
var Client = new SWFObject("<?= $hotel['swfFolderSwf'] ?>", "client", "100%", "100%", "10.0.0");
Client.addVariable("client.allow.cross.domain", "0");
Client.addVariable("client.notify.cross.domain", "1");
Client.addVariable("connection.info.host", "178.239.162.26");
Client.addVariable("connection.info.port", "<?= $hotel['emuPort'] ?>");
Client.addVariable("site.url", "<?= $config['hotelUrl'] ?>");
Client.addVariable("url.prefix", "<?= $config['hotelUrl'] ?>");
Client.addVariable("client.reload.url", "<?= $config['hotelUrl'] ?>/me");
Client.addVariable("client.fatal.error.url", "<?= $config['hotelUrl'] ?>/me");
Client.addVariable("client.connection.failed.url", "<?= $config['hotelUrl'] ?>/me");
Client.addVariable("external.override.texts.txt", "<?= $hotel['external_Texts_Override'] ?>");
Client.addVariable("external.override.variables.txt", "<?= $hotel['external_Variables_Override'] ?>");
Client.addVariable("external.variables.txt", "<?= $hotel['external_Variables'] ?>");
Client.addVariable("external.texts.txt", "<?= $hotel['external_Texts'] ?>");
Client.addVariable("external.figurepartlist.txt", "<?= $hotel['figuredata'] ?>");
Client.addVariable("flash.dynamic.avatar.download.configuration", "<?= $hotel['figuremap'] ?>");
Client.addVariable("productdata.load.url", "<?= $hotel['productdata'] ?>");
Client.addVariable("furnidata.load.url", "<?= $hotel['furnidata'] ?>");
Client.addVariable("use.sso.ticket", "1");
Client.addVariable("sso.ticket", "<?= User::userData('auth_ticket') ?>");
Client.addVariable("processlog.enabled", "0");
Client.addVariable("client.starting", "<?= $hotel['swftitle'] ?>");
Client.addVariable("flash.client.url", "<?= $hotel['swfFolder'] ?>/");
Client.addVariable("flash.client.origin", "popup");
Client.addVariable("nux.lobbies.enabled", "true");
Client.addVariable("country_code", "NL");
Client.addParam('base', '<?= $hotel['swfFolder'] ?>/');
Client.addParam('allowScriptAccess', 'always');
Client.addParam('menu', false);
Client.addParam('wmode', "opaque");
Client.write('client');


FlashExternalInterface.signoutUrl = "<?= $config['hotelUrl'] ?>/logout";
</script>

<script>
//Usuário sem Adobe Flash Player
if(!FlashDetect.installed){
window.location.href = "<?= $config['hotelUrl'] ?>/noflash";
}
</script>
</head>
<script type="text/javascript">
function toggleFullScreen() {
if ((document.fullScreenElement && document.fullScreenElement !== null) ||
(!document.mozFullScreen && !document.webkitIsFullScreen)) {
if (document.documentElement.requestFullScreen) {
document.documentElement.requestFullScreen();
} else if (document.documentElement.mozRequestFullScreen) {
document.documentElement.mozRequestFullScreen();
} else if (document.documentElement.webkitRequestFullScreen) {
document.documentElement.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
}
} else {
if (document.cancelFullScreen) {
document.cancelFullScreen();
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen();
} else if (document.webkitCancelFullScreen) {
document.webkitCancelFullScreen();
}
}
}
</script>
<script type="text/javascript">
function resizeClient(){
var theClient = document.getElementById('client');
var theWidth = theClient.clientWidth;
theClient.style.width = "10px";
theClient.style.width = theWidth + "px";
}
</script>
<style>
.client__buttons {
left: 12px;
position: absolute;
top: -3px;
z-index: 630;
border-radius: 5px;
}
.client__buttons button {
box-shadow: 0 3px 0 1px rgba(0,0,0,.3);
background-color: #292929;
border-color: #41403d;
padding: 9px 2px;
width: 200px;
display: block;
border-radius: 5px;
float: left;
padding-left: 6px;
padding-right: 6px;
line-height: 1.2;
color: #b9b9b9;
font-size: 12px;
border-style: solid;
margin-bottom: 4px;
text-align: center;
outline: none;
}
.client__buttons button:hover{
-webkit-animation-name:shakeit;
-webkit-animation-duration:1s;
-webkit-animation-timing-function:linear;
-webkit-animation-iteration-count:infinite;
animation-name:shakeit;
animation-duration:1s;
animation-timing-function:linear;
animation-iteration-count:infinite;}
@keyframes shakeit{0%{transform:rotate(0deg) translate(2px,1px);}
10%{transform:rotate(10deg) translate(1px,2px);}
20%{transform:rotate(-10deg) translate(3px,0px);}
30%{transform:rotate(0deg) translate(0px,-2px);}
40%{transform:rotate(-10deg) translate(-1px,1px);}
50%{transform:rotate(10deg) translate(1px,-2px);}
60%{transform:rotate(0deg) translate(3px,-1px);}
70%{transform:rotate(10deg) translate(-2px,-1px);}
80%{transform:rotate(-10deg) translate(1px,1px);}
90%{transform:rotate(0deg) translate(-2px,-2px);}
100%{transform:rotate(10deg) translate(-1px,2px);}
} </style>
Scusa la domanda stupida, ma per caso hai configurato ed avviato l'emulatore?
certamente se in locale mi funge XD
Puoi inviare anche il file di configurazione dell'emulatore?
ok fatto in più volevo dire che il dominio ora funziona, posso cambiare tutti gli ip dai file e mettere direttamente il sito del dominio?
 
## BiosEmulador Configuração System
## Creditos ao Thiago Araujo - DevBios

## MySQL Configuração
db.hostname=127.0.0.1
db.port=3306
db.username=root
db.password=
db.name=sadsdsad:emoji_relieved:

## MySQL pooling setup (controla a quantidade de conexões)
db.pool.minsize=10
db.pool.maxsize=250

## Game TCP/IP Configuração
game.tcp.bindip=178.239.162.26
game.tcp.port=30000
game.tcp.conlimit=100000
game.tcp.conperip=2000
game.tcp.enablenagles=true

## MUS TCP/IP Configuração
mus.tcp.bindip=178.239.162.26
mus.tcp.port=30001
mus.tcp.allowedaddr=178.239.162.26

## Client Configuração
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300

## Configuração do Nome do seu hotel
hotel.name=Habbz
license=Habbz Hotel
game.legacy.figure_mutant=1

##Configuração dos Quartos do BiosEmulador
Quartovip=65
Prisao=32

## Configurações para recompesa de tempo online no hotel dos servidores de SAO
# A "MensagemAoReceber" alerta o usuário ("Você recebeu X moedas, X duckets e X diamantes!"
MensagemAoReceber=true
Moedas=50
Duckets=100
Diamantes=0
#<< INTERVALO EM MINUTOS! >>
Intervalo=15

# Vip 1 By: Thiago Araujo
Moedasvip=200
Ducketsvip=200
Diamantesvip=0
# Vip 2 By: Thiago Araujo
Moedassvip=300
Ducketssvip=300
Diamantessvip=0
# Comando Premiar By: Thiago Araujo
Moedaspremiar=500
Ducketspremiar=500
Diamantespremiar=1
NiveltotalGames=200
CodEmblemaNivel=NV

# Rank Minimo de Staff By: Thiago Araujo
MineRankStaff=2
Ok allora allo stesso modo di prima, devi configurare il firewall però stavolta invece di mettere "80" come porta, devi mettere "30000,30001"
 
## BiosEmulador Configuração System
## Creditos ao Thiago Araujo - DevBios

## MySQL Configuração
db.hostname=127.0.0.1
db.port=3306
db.username=root
db.password=
db.name=sadsdsad:emoji_relieved:

## MySQL pooling setup (controla a quantidade de conexões)
db.pool.minsize=10
db.pool.maxsize=250

## Game TCP/IP Configuração
game.tcp.bindip=178.239.162.26
game.tcp.port=30000
game.tcp.conlimit=100000
game.tcp.conperip=2000
game.tcp.enablenagles=true

## MUS TCP/IP Configuração
mus.tcp.bindip=178.239.162.26
mus.tcp.port=30001
mus.tcp.allowedaddr=178.239.162.26

## Client Configuração
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300

## Configuração do Nome do seu hotel
hotel.name=Habbz
license=Habbz Hotel
game.legacy.figure_mutant=1

##Configuração dos Quartos do BiosEmulador
Quartovip=65
Prisao=32

## Configurações para recompesa de tempo online no hotel dos servidores de SAO
# A "MensagemAoReceber" alerta o usuário ("Você recebeu X moedas, X duckets e X diamantes!"
MensagemAoReceber=true
Moedas=50
Duckets=100
Diamantes=0
#<< INTERVALO EM MINUTOS! >>
Intervalo=15

# Vip 1 By: Thiago Araujo
Moedasvip=200
Ducketsvip=200
Diamantesvip=0
# Vip 2 By: Thiago Araujo
Moedassvip=300
Ducketssvip=300
Diamantessvip=0
# Comando Premiar By: Thiago Araujo
Moedaspremiar=500
Ducketspremiar=500
Diamantespremiar=1
NiveltotalGames=200
CodEmblemaNivel=NV

# Rank Minimo de Staff By: Thiago Araujo
MineRankStaff=2
Ok allora allo stesso modo di prima, devi configurare il firewall però stavolta invece di mettere "80" come porta, devi mettere "30000,30001"
perfetto ragazzi grazie mille funge tutto!!
rimango col fatto del catalogo in portoghese xD grazie mille davvero
 
Stato
Discussione chiusa ad ulteriori risposte.