Assistenza Tecnica Habbo Retroserver
Titolo Errore con Phoenix 3.11.0 (Habbo retro v63)
Tipologia del tuo problema/richiesta CLIENT
CMS/Server/DB/Client Utilizzato MacBETAv.1.2-Pixel cms/phoenix 3.11.0/MacBETAv.1.2-DB/
Qual è il tuo errore? C'è un errore che non fa caricare completamente i DCR
Screenshot
Come potete vedere dallo screen carica al 100% tutto ma alla fine mi da un errore di compilazione che non capisco dove si trovi.
Grazie in anticipo se vi servono altri screen in merito alla questione o delle altre configurazioni ditemelo con un post qui sotto e lo darò immediatamente.Ah e scusate se non posto direttamente l'immagine avevo provato a farlo direttamente postandola su sciax ma si vedeva troppo piccola e non si capiva nulla quindi ho preferito metterla prima su un hosting (in questo caso imgur) così potete ingrandire e vedere meglio.
Ulteriori informazioni -
CLIENT/GIOCO:
<?php/*--------------------------------+
| PixelCMS v.4 (MacBETA v.4.0.1)
+---------------------------------*/
include('core.php');
include('includes/session.php');
if($logged_in){
require_once('includes/session.php');
} else {
header("location: clientutils.php?key=loginplease");
exit;
}
if($online !== "online" && $enable_status_image == "1"){
echo "<font color='white'><center><b>".$sitename." is offline</b></center></font>";
exit();
}
if($remote_ip == "IP Del vps oppure se si sta usando hamachi IPv4 di hamachi" || $remote_ip == "localhost" && $server_on_localhost == 1){
$ip = "IP Del vps oppure se si sta usando hamachi IPv4 di hamachi";
}
$forward = 0;
if(isset($_GET['roomId'])){
$roomid = mysql_real_escape_string($_GET['roomId']);
$checksql = mysql_query("SELECT roomtype FROM rooms WHERE id = '".$roomid."' LIMIT 1");
$roomexists = mysql_num_rows($checksql);
if($roomexists > 0){
$roominfo = mysql_fetch_array($checksql);
$forward = 1;
if($roominfo['roomtype'] == 'public')
$forward_type = 1;
else
$forward_type = 2;
}
}
if(isset($_GET['nome'])){
$nome = Filtertext($_GET['nome']);
$check = mysql_query("SELECT * FROM users WHERE username LIKE '".$nome."'");
$check1 = mysql_fetch_assoc($check);
if($myrow['rank'] == '7'){
$myticket = GenerateTicket();
mysql_query("UPDATE users SET auth_ticket = '".$myticket."', ip_last = '".$remote_ip."' WHERE id = '".$check1['id']."' LIMIT 1") or die(mysql_error());
}else{
echo 'Non sei un amministratore';
}
}else{
$myticket = GenerateTicket();
mysql_query("UPDATE users SET auth_ticket = '".$myticket."', ip_last = '".$remote_ip."' WHERE id = '".$my_id."' LIMIT 1") or die(mysql_error());
}
$mynickname = mysql_fetch_array(mysql_query("SELECT username FROM users WHERE id = '" . $my_id . "'"));
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=7" />
<title>Pixel: Gioco</title>
<script type="text/javascript">
var andSoItBegins = (new Date()).getTime();
</script>
<link rel="shortcut icon" href="favicon.ico" type="image/vnd.microsoft.icon" />
<link rel="alternate" type="application/rss+xml" title="Habbo: RSS" href="http://www.habbo.it/articles/rss.xml" />
<script src="flashclient/libs2.js" type="text/javascript"></script>
<script src="flashclient/visual.js" type="text/javascript"></script>
<script src="flashclient/libs.js" type="text/javascript"></script>
<script src="flashclient/common.js" type="text/javascript"></script>
<link rel="stylesheet" href="flashclient/style.css" type="text/css" />
<link rel="stylesheet" href="flashclient/bottons.css" type="text/css" />
<link rel="stylesheet" href="flashclient/boxes.css" type="text/css" />
<link rel="stylesheet" href="flashclient/tooltips.css" type="text/css" />
<link rel="stylesheet" href="flashclient/changepassword.css" type="text/css" />
<script type="text/javascript">
</script>
<script type="text/javascript">
var habboReqPath = "";
var habboStaticFilePath = "<?php echo $path; ?>/web-gallery";
var habboImagerUrl = "http://www.habbo.it/habbo-imaging/";
var habboDefaultClientPopupUrl = "HOMESSOILMIOIP/gioco.php";
</script>
<link rel="stylesheet" href="flashclient/habboclient.css" type="text/css" />
<link rel="stylesheet" href="flashclient/habboflashclient.css" type="text/css" />
<script src="flashclient/habboflashclient.js" type="text/javascript"></script>
<script type="text/javascript" src="./habboflashclient.js"></script>
<script type="text/javascript">
if (top == self) {
FlashHabboClient.cacheCheck();
}
var flashvars = {
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "HOMESSOILMIOIP",
"connection.info.port" : "1819",
"site.url" : "http://HOMESSOILMIOIP",
"url.prefix" : "http://HOMESSOILMIOIP",
"client.reload.url" : "http://HOMESSOILMIOIP/404.php",
"client.fatal.error.url" : "http://HOMESSOILMIOIP/404.php",
"client.connection.failed.url" : "http://HOMESSOILMIOIP/404.php",
"external.variables.txt" : "http://HOMESSOILMIOIP/r63/gamedata/external_variables.php?username=<?php echo $mynickname[0]; ?>",
"external.texts.txt" : "http://HOMESSOILMIOIP/r63/gamedata/external_flash_texts.txt",
"productdata.load.url" : "http://HOMESSOILMIOIP/r63/gamedata/productdata.txt",
"furnidata.load.url" : "http://HOMESSOILMIOIP/r63/gamedata/furnidata.txt",
"use.sso.ticket" : "1",
"sso.ticket" : "<?php echo $myticket; ?>",
<?php
if($forward)
{
echo '"forward.type" : "'.$forward_type.'",';
echo '"forward.id" : "'.$roomid.'",';
}
if(isset($_GET['friendId']))
{
echo '"friend.id" : "'.mysql_real_escape_string($_GET['friendId']).'",';
}
?>
"processlog.enabled" : "0",
"account_id" : "0",
"client.starting" : "Attendi perfavore! Pixel sta caricando.",
"flash.client.url" : "http://HOMESSOILMIOIP/r63/dcr/hof_furni/",
"user.hash" : "",
"has.identity" : "1",
"flash.client.origin" : "popup"
};
var params = {
"base" : "http://HOMESSOILMIOIP/r63/gordon/r63/",
"allowScriptAccess" : "always",
"menu" : "false"
};
if (!(HabbletLoader.needsFlashKbWorkaround())) {
params["wmode"] = "opaque";
}
FlashExternalInterface.signoutUrl = "http://HOMESSOILMIOIP/logout.php";
var clientUrl = "http://HOMESSOILMIOIP/r63/pixel.swf";
swfobject.embedSWF(clientUrl, "flash-container", "100%", "100%", "10.0.0", "flashclient/expressInstall.swf", flashvars, params);
window.onbeforeunload = unloading;
function unloading() {
var clientObject;
if (navigator.appName.indexOf("Microsoft") != -1) {
clientObject = window["flash-container"];
} else {
clientObject = document["flash-container"];
}
try {
clientObject.unloading();
} catch (e) {}
}
</script>
<meta name="description" content="DnT DCR: Created By Fraxceed!" />
<meta name="keywords" content="dnt, dcr, fraxceed" />
<!--[if IE 8]>
<link rel="stylesheet" href="/flashclient/ie8.css" type="text/css" />
<![endif]-->
<!--[if lt IE 8]>
<link rel="stylesheet" href="/flashclient/ie.css" type="text/css" />
<![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" href="/flashclient/ie6.css" type="text/css" />
<script src="/flashclient/pngfix.js" type="text/javascript"></script>
<script type="text/javascript">
try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {}
</script>
<style type="text/css">
body { behavior: url(/js/csshover.htc); }
</style>
<![endif]-->
<meta name="build" content="63-BUILD259 - 23.02.2011 23:10 - it" />
</head>
<body id="client" class="flashclient">
<div id="overlay"></div>
<img src="/flashclient/page_loader.gif" style="position:absolute; margin: -1500px;" />
<div id="overlay"></div>
<div id="client-ui" >
<div id="flash-wrapper">
<div id="flash-container">
<div id="content" style="width: 400px; margin: 20px auto 0 auto; display: none">
<div class="cbb clearfix">
<h2 class="title">Aggiorna Flash Player all'ultima versione disponibile</h2>
<div class="box-content">
<p>Puoi scaricare e istallare Adobe Flash Player <a rel="nofollow" href="http://get.adobe.com/flashplayer/">da questa URL</a>. Puoi trovare le istruzioni di istallazione <a rel="nofollow" href="http://www.adobe.com/products/flashplayer/productinfo/instructions/">cliccando qui</a>.</p>
<p><a rel="nofollow" href="http://www.adobe.com/go/getflashplayer"><img src="flashclient/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
</div>
</div>
</div>
<script type="text/javascript">
$('content').show();
</script>
<noscript>
<div style="width: 400px; margin: 20px auto 0 auto; text-align: center">
<p>If you are not automatically redirected, please <a href="/client/nojs">click here</a></p>
</div>
</noscript>
</div>
</div>
<div id="content" class="client-content"></div>
</div>
<div style="display: none">
<div id="habboCountUpdateTarget">
4,017 Habbo in Hotel
</div>
<script language="JavaScript" type="text/javascript">
setTimeout(function() {
HabboCounter.init(600);
}, 20000);
</script>
</div>
<script type="text/javascript">
RightClick.init("flash-wrapper", "flash-container");
if (window.opener && window.opener != window && window.opener.location.href == "/") {
window.opener.location.replace("/me");
}
$(document.body).addClassName("js");
HabboClient.startPingListener();
</script>
<script src="http://www.google-analytics.com/ga.js" type="text/javascript"></script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-448325-20");
pageTracker._trackPageview();
</script>
<script type="text/javascript">
HabboView.run();
</script>
<script type="text/javascript">
jjLoader.init('client', 6, '/web-gallery/v2/images/next.png', 'http://i40.tinypic.com/r10i6d.gif');
</script>
</body>
</html>
CONFIG DEI DCR:
avatar.widget.enabled=1
avatareditor.allowclubtryout=1
avatareditor.promohabbos=http://HOMESSOILMIOIP/r63/gordon/r63/promo_habbos.xml
billboard.adwarning.left.url=AdWarningsUK/ad_warning_L.png
billboard.adwarning.right.url=AdWarningsUK/ad_warning_R.png
catalog.drag_and_drop=true
catalog.furniture.animation=true
cfh.usercategories.withharasser=101,102,103,104,105,106
cfh.usercategories.withnoharasser=101,102,103,104,105,106
client.allow.external.links=0
client.allow.facebook.like=0
client.credits.embed.enabled=true
client.fatal.error.url=http://HOMESSOILMIOIP/clientutils.php
client.hotel_view.image=hotel_view_images_hq/reception.jpg
client.hotel_view.show_on_startup=1
client.logout.enabled=true
client.minimail.embed.enabled=true
client.news.embed.enabled=true
client.toolbar.static.enabled=true
club.membership.extend.basic.promotion.enabled=0
club.membership.extend.promotion.enabled=0
club.subscription.disabled=1
dynamic.download.name.template=%revision%/hh_furni_xx_%typeid%.cct
dynamic.download.samples.template=%revision%/%typeid%.cct
dynamic.download.url=http://HOMESSOILMIOIP/r63/dcr/hof_furni/
embed.showInRoomInfo=true
external.figurepartlist.txt=http://HOMESSOILMIOIP/r63/gamedata/figuredata.xml
external.texts.txt=http://HOMESSOILMIOIP/r63/gamedata/external_flash_texts.txt
feed.badge_decorations.album=Feed_Badges
feed.badge_decorations.decoration_id=001
flash.dynamic.download.name.template=%typeid%.swf
flash.dynamic.download.samples.template=mp3/sound_machine_sample_%typeid%.mp3
flash.dynamic.download.url=http://HOMESSOILMIOIP/r63/dcr/hof_furni/
friendbar.enabled=true
friendbar.notifications.enabled=true
friendbar.requests.enabled=true
friendbar.stream.enabled=false
friendbar.stream.liking.enabled=true
friendbar.stream.user.enabled=true
friend_bar.helper.friend_finding.enabled=true
furnidata.load.url=http://HOMESSOILMIOIP/r63/gamedata/furnidata.txt
furniture.context.menu.widget.enabled=true
group.badge.url=http://HOMESSOILMIOIP/habbo-imaging/badge.php?badge=%imagerdata%.gif
habboinfotool.url=http://HOMESSOILMIOIP/habblet.php?do=user&name=
handitem.give.enabled=true
hotelview.banner.url=http://HOMESSOILMIOIP/logo.png
hover.name.enabled=true
image.library.catalogue.url=http://HOMESSOILMIOIP/r63/c_images/catalogue/
image.library.playlist.url=http://HOMESSOILMIOIP/r63/c_images/playlist/
image.library.questing.url=http://HOMESSOILMIOIP/r63/c_images/Quests/
image.library.url=http://HOMESSOILMIOIP/r63/c_images/
infostand.report.show=1
infostand.use.button.enabled=true
interstitial.enabled=false
interstitial.interval=120000
interstitial.max.displays=8
interstitial.show.time=5000
lagWarningLog.enabled=0
lagWarningLog.interval.seconds=5
latencytest.interval=20000
latencytest.report.delta=100
latencytest.report.index=3
link.format.club=http://HOMESSOILMIOIP/credits/club
link.format.collectibles=http://HOMESSOILMIOIP/credits/club
link.format.credits=http://HOMESSOILMIOIP/credits
link.format.friendlist.pref=http://HOMESSOILMIOIP
link.format.mail.compose=http://HOMESSOILMIOIP/me
link.format.tag.search=http://HOMESSOILMIOIP/me
link.format.userpage=http://HOMESSOILMIOIP/home/
link.friendbar.stream.settings.see.more=http://HOMESSOILMIOIP
logout.disconnect.url=http://HOMESSOILMIOIP/
logout.url=http://HOMESSOILMIOIP/client/logout.php
menu.avatar.enabled=true
menu.own_avatar.enabled=1
moderatoractionlog.url=http://HOMESSOILMIOIP/manage/hotel/de/housekeeping/
navigator.always_open_after_login=0
navigator.colorlimit.orange=80
navigator.colorlimit.red=92
navigator.colorlimit.yellow=50
navigator.default.view=public
navigator.default_tab=popular
new.chat.bubbles.enabled=1
pixels.enabled=true
predefined_room.type=1
private.image.library.url=http://HOMESSOILMIOIP/r63/c_images/
productdata.load.url=http://HOMESSOILMIOIP/r63/gamedata/productdata.txt
purse.widget.currency.shells.enabled=1
purse.widget.enabled=1
questing.defaultCampaign=room_builder
questing.enabled=true
questing.showDetailsForNextQuest=false
questing.startQuestDelayInSeconds=10
questing.useWing=true
room.dragging.always_center=0
room.rating.enable=1
roomadmin.url=http://HOMESSOILMIOIP/manage/de/housekeeping/?roomid=
roomenterad.habblet.enabled=false
roominfo.widget.enabled=1
simple.memenu.enabled=1
subscription.reminder.when.days.left=2
toolbar.new_additions.notification.enabled=true
toolbar.tracking.enabled=0
trax.player.sample.memory.purge.enabled=1
viral.furni.post_type=appRequest
group.homepage.url=http://HOMESSOILMIOIP/groups/%groupid%
trax.player.sample.memory.purge.enabled=1