UberCMS & Phoenix Emulator - Client not loading

Results 1 to 11 of 11
  1. #1
    Gamma Spamma Liam is offline
    MemberRank
    Dec 2011 Join Date
    Down UnderLocation
    2,946Posts

    UberCMS & Phoenix Emulator - Client not loading

    Hello guys, well, basically, I've setup everything, my custom edit of UberCMS, and along with it, Phoenix Emulator..!

    Everything was working before, but furniture wouldn't load, so I used new SWFs. Now ever since then, the client wouldn't load. Well it would load, but it would sit on the hotel loader screen for a fair few seconds, and it would just go to the error page, witch I've chosen to be the me page.

    So I know it's not Phoenix, because it's all working, and here is my client.php, page-client.tpl and external_variables, in order:
    Code:
    <?php/*=======================================================================
    | UberWeb - Lightweight site system for Uber
    | #######################################################################
    | Copyright (c) 2009, Roy 'Meth0d'
    | http://www.meth0d.org
    | #######################################################################
    | This program is free software: you can redistribute it and/or modify
    | it under the terms of the GNU General Public License as published by
    | the Free Software Foundation, either version 3 of the License, or
    | (at your option) any later version.
    | #######################################################################
    | This program is distributed in the hope that it will be useful,
    | but WITHOUT ANY WARRANTY; without even the implied warranty of
    | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    | GNU General Public License for more details.
    \======================================================================*/
    
    
    define('HIDE_FEEDBACK', true);
    
    
    require_once "global.php";
    require_once "inc/class.rooms.php";
    
    
    if (!LOGGED_IN)
    {
    	header("Location: " . WWW. "/login_popup");
    	exit;
    }
    
    
    $forwardType = 0;
    $forwardId = 0;
    dbquery("UPDATE `users` SET `auth_ticket` = '" . $users->GetUserVar(USER_ID, "auth_ticket") . "' WHERE id = '" . USER_ID . "'");
    dbquery("UPDATE users SET ip_last = '".$_SERVER['REMOTE_ADDR']."' WHERE username = '".USER_NAME."'");
    
    
    if ($users->getUserVar(USER_ID, 'newbie_status') == "0")
    {
    	if (isset($_GET['createRoom']) && is_numeric($_GET['createRoom']))
    	{
    		$roomId = RoomManager::CreateRoom(USER_NAME . "'s room", USER_NAME, 'model_s');
    
    
    		switch (intval($_GET['createRoom']))
    		{
    			default:
    			case 0:
    			
    				RoomManager::PaintRoom($roomId, '1701', '601');
    				break;
    				
    			case 1:
    			
    				RoomManager::PaintRoom($roomId, '607', '111');
    				break;
    				
    			case 2:
    			
    				RoomManager::PaintRoom($roomId, '1901', '301');
    				break;
    				
    			case 3:
    			
    				RoomManager::PaintRoom($roomId, '1801', '110');
    				break;
    				
    			case 4:
    			
    				RoomManager::PaintRoom($roomId, '503', '104');
    				break;
    				
    			case 5:
    			
    				RoomManager::PaintRoom($roomId, '804', '107');
    				break;
    		}
    
    
    		//die('createRoom Result: ' . $roomId);
    		dbquery("UPDATE users SET home_room = '" . $roomId . "', newbie_status = '1' WHERE id = '" . USER_ID . "' LIMIT 1");
    		
    		//$forwardType = 2;
    		//$forwardId = $roomId;
    	}
    	else
    	{
    		header("Location: " . WWW . "/client?createRoom=" . rand(0, 5));
    		exit;
    	}
    }
    else if (isset($_GET['forwardType']) && isset($_GET['forwardId']) && is_numeric($_GET['forwardType']) && is_numeric($_GET['forwardId']))
    {
    	$forwardType = intval($_GET['forwardType']);
    	$forwardId = intval($_GET['forwardId']);
    	
    	if ($forwardType >= 3 || $forwardType <= 0)
    	{
    		return;
    	}
    }
    
    
    /*if ($users->GetUserVar(USER_ID, "newbie_status", false) == "1")
    {
    	header("Location: " . WWW . "/account/policy-verify");
    	exit;
    }*/
    
    
    $users->CheckSSO(USER_ID);
    
    
    $tpl->Init();
    
    
    $tpl->AddGeneric('head-init');
    $tpl->AddIncludeSet('default');
    $tpl->AddIncludeFile(new IncludeFile('text/css', '%web_build%/web-gallery/styles/habboclient.css', 'stylesheet'));
    $tpl->AddIncludeFile(new IncludeFile('text/css', '%web_build%/web-gallery/styles/habboflashclient.css', 'stylesheet'));
    $tpl->AddIncludeFile(new IncludeFile('text/javascript', '%web_build%/web-gallery/static/js/habboflashclient.js'));			
    $tpl->WriteIncludeFiles();
    $tpl->AddGeneric('head-bottom');
    
    
    $client = new Template('page-client');
    $client->SetParam('page_title', 'Client');
    $client->SetParam('sso_ticket', $users->GetUserVar(USER_ID, 'auth_ticket', false));
    $client->SetParam('flash_base', '%www%/r63/');
    $client->SetParam('flash_client_url', '%www%/r63/');
    $client->SetParam('hotel_status', $core->GetUsersOnline() . ' users online now!');
    $client->SetParam('forwardType', $forwardType);
    $client->SetParam('forwardId', $forwardId);
    $client->SetParam('GameHost', '127.0.0.1');
    $client->SetParam('GamePort', '30000');
    
    
    if (isset($_GET['forceTicket']) && $users->HasFuse(USER_ID, 'fuse_admin'))
    {
    	$client->SetParam('sso_ticket', $_GET['forceTicket']);
    }
    
    
    $tpl->AddTemplate($client);
    
    
    $tpl->Output();
    
    
    ?>
    Code:
    <noscript>    <meta http-equiv="refresh" content="0;url=/client/nojs" />
    </noscript>
    
    
    <script type="text/javascript">
        FlashExternalInterface.loginLogEnabled = true;
        
        FlashExternalInterface.logLoginStep("web.view.start");
        
        if (top == self) {
            FlashHabboClient.cacheCheck();
        }
    
    
    	var habboReqPath = "%www%";
    	
    	var flashvars = {
                "client.allow.cross.domain" : "1", 
                "client.notify.cross.domain" : "1",
                "connection.info.host" : "127.0.0.1",
    	    		"connection.info.port" : "30000",
                "site.url" : "%www%", 
                "url.prefix" : "%www%", 
                "client.reload.url" : "%www%/client", 
                "client.fatal.error.url" : "%www%", 
                "client.connection.failed.url" : "%www%", 
                "external.variables.txt" : "%www%/r63/external_variables.txt", 
                "external.texts.txt" : "%www%/r63/external_flash_texts.txt", 
                "productdata.load.url" : "%www%/r63/productdata.txt", 
                "furnidata.load.url" : "%www%/r63/furnidata.txt", 
                "use.sso.ticket" : "1", 
                "sso.ticket" : "%sso_ticket%", 
                "processlog.enabled" : "1",
                "account_id" : "19927505", 
                "client.starting" : "Please wait! Haboa is starting.",
                "flash.client.url" : "%www%/client",
                "user.hash" : "<?php echo sha1(USER_ID); ?>", 
                "flash.client.origin" : "popup",
    																																												
        };
    
    
        var params = {
            "base" : "%www%/r63/",
            "allowScriptAccess" : "always",
            "menu" : "false"                
        };
        
        if (!(HabbletLoader.needsFlashKbWorkaround())) {
        	params["wmode"] = "opaque";
        }
    	
        var clientUrl = "%www%/r63/habbo.swf"; 
        swfobject.embedSWF(clientUrl, "flash-container", "100%", "100%", "10.0.0", "%web_build%/web-gallery/flash/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="Check into the world’s largest virtual hotel for FREE! Meet and make friends, play games, chat with others, create your avatar, design rooms and more…" />
    <meta name="keywords" content="habbo hotel, virtual, world, social network, free, community, avatar, chat, online, teen, roleplaying, join, social, groups, forums, safe, play, games, online, friends, teens, rares, rare furni, collecting, create, collect, connect, furni, furniture, pets, room design, sharing, expression, badges, hangout, music, celebrity, celebrity visits, celebrities, mmo, mmorpg, massively multiplayer" />
    
    
    
    
    
    
    <!--[if IE 8]>
    <link rel="stylesheet" href="%www%/web-gallery/v2/styles/ie8.css" type="text/css" />
    <![endif]-->
    <!--[if lt IE 8]>
    <link rel="stylesheet" href="%www%/web-gallery/v2/styles/ie.css" type="text/css" />
    <![endif]-->
    <!--[if lt IE 7]>
    <link rel="stylesheet" href="%www%/web-gallery/v2/styles/ie6.css" type="text/css" />
    <script src="%www%/web-gallery/static/js/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-BUILD36 - 16.11.2010 11:51 - com" />
    </head>
    
    
    <body id="client" class="flashclient">
    <div id="overlay"></div>
    <img src="%www%/web-gallery/v2/images/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">Please update your Flash Player to the latest version.</h2>
        <div class="box-content">
                <p>You can install and download Adobe Flash Player here: <a href="http://get.adobe.com/flashplayer/">Install flash player</a>. More instructions for installation can be found here: <a href="http://www.adobe.com/products/flashplayer/productinfo/instructions/">More information</a></p>
                <p><a href="http://www.adobe.com/go/getflashplayer"><img src="%www%/web-gallery/v2/images/client/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">
    %hotel_status%
    </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 && typeof window.opener.location.href != "undefined") {
                window.opener.location.replace(window.opener.location.href);
            }
            $(document.body).addClassName("js");
           	HabboClient.startPingListener();
        </script>
    
    
    <script type="text/javascript">
        HabboView.run();
    </script>
    
    
    <script type="text/javascript">
    
    
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-15697942-2']);
      _gaq.push(['_trackPageview']);
    
    
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
      })();
    
    
    </script>
    
    
    </body> 
    </html>
    Code:
     char.conversion.mac=[128:219,130:226,131:196,132:227,133:201,134:160,135:224,136:246,137:228,139:220,140:206,145:212,146:213,147:210,148:211,149:165,150:208,151:209,152:247,153:170,155:221,156:207,159:217,161:193,165:180,167:164,168:172,170:187,171:199,172:194,173:208,174:168,176:161,180:171,182:166,183:225,184:252,186:188,187:200,191:192,192:203,193:231,194:229,195:204,196:128,197:129,198:174,199:130,200:233,201:131,202:230,203:232,204:237,205:234,206:235,207:236,209:132,210:241,211:238,212:239,213:205,214:133,216:175,217:244,218:242,219:243,220:134,223:167,224:136,225:135,226:137,227:139,228:138,229:140,230:190,231:141,232:143,233:142,234:144,235:145,236:147,237:146,238:148,239:149,241:150,242:152,243:151,244:153,246:154,247:214,248:191,249:157,250:156,251:158,252:159,255:216]stats.tracking.javascript=google
    productdata.load.url=http://127.0.0.1/r63/productdata.txt
    image.library.questing.url=http://127.0.0.1/r63/c_images/Quests/
    purse.widget.enabled=1
    avatar.widget.enabled=1
    figure.partsets.xml=http://127.0.0.1/r63/figurepartconfig/partsets.xml
    struct.font.grey=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#666666"),#ilk:#struct,#fontStyle:[#italic]]
    viral.furni.post_type=appRequest
    billboard.adwarning.left.url=AdWarningsUK/ad_warning_L.png
    security.cast.load.url=http://127.0.0.1/r63/sec.cct?t=%token%
    navigator.default.view=public
    latencytest.interval=20000
    external.figurepartlist.txt=http://127.0.0.1/r63/figuredata.xml
    image.library.url=http://127.0.0.1/r63/c_images/
    navigator.visible.public.root=3
    permitted.name.chars=1234567890qwertyuiopasdfghjklzxcvbnm-=?!@:.,
    external.texts.txt=http://127.0.0.1/r63/external_flash_texts.txt
    latencytest.report.delta=100
    struct.font.bold=[#font:"vb",#fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#plain]]
    figure.draworder.xml=http://127.0.0.1/r63/figurepartconfig/draworder.xml
    client.hotel_view.image=hotel_view_images_hq/hween_bg_1.png
    billboard.adwarning.right.url=AdWarningsUK/ad_warning_R.png
    image.library.catalogue.url=http://127.0.0.1/r63/c_images/catalogue/
    flash.dynamic.download.url=http://127.0.0.1/r63/hof_furni/
    room.default.wall=201
    new.chat.bubbles.enabled=1
    navigator.always_open_after_login=0
    menu.avatar.enabled=true
    infostand.use.button.enabled=1
    purse.widget.currency.shells.enabled=1
    feed.badge_decorations.decoration_id=001
    purse.transactions.active=1
    new.chat.widget.enabled=1
    client.use.invites=1
    struct.font.plain=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#plain]]
    hotelview.banner.url=http://127.0.0.1/r63/banner/
    client.textdata.utf8=1
    logout.concurrent.url=http://127.0.0.1/reload.php
    figure.animation.xml=http://127.0.0.1/r63/figurepartconfig/animation.xml
    dynamic.download.url=http://127.0.0.1/r63/hof_furni/
    language=en
    struct.font.italic=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#italic]]
    feed.badge_decorations.album=Feed_Badges
    external.figurepartlist.txt.secure=https://127.0.0.1/r63/figuredata.xml
    logout.url=http://127.0.0.1/reload.php
    room.default.floor=111
    navigator.public.default=3
    tutorial.name.new_user_flow=NUF_mini
    furnidata.load.url=http://127.0.0.1/r63/furnidata.txt
    flash.dynamic.download.name.template=%typeid%.swf
    struct.font.tooltip=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#plain]]
    struct.font.link=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#underline]]
    figure.draworder.xml.secure=https://127.0.0.1/r63/figurepartconfig/draworder
    fuse.project.id=habbo_de
    flash.dynamic.download.samples.template=mp3/sound_machine_sample_%typeid%.mp3
    navigator.private.default=4
    client.window.title=Habbo Hotel
    dynamic.download.name.template=hh_furni_xx_%typeid%.cct
    avatareditor.allowclubtryout=1
    private.image.library.url=http://127.0.0.1/r63/c_images/
    logout.disconnect.url=http://127.0.0.1/reload.php
    latencytest.report.index=3
    dynamic.download.samples.template=%typeid%.cct
    navigator.visible.private.root=4
    stats.tracking.javascript.template=\TCODE
    link.format.friendlist.pref=http://127.0.0.1/profile/friendsmanagement?tab=6
    cast.entry.10=hh_human_hats
    cast.entry.11=hh_human_hair
    group.badge.url=http://127.0.0.1/r63/c_images/groups/%imagerdata%.gif 
    cast.entry.12=hh_human_shirt
    interface.cmds.user.friend=["friend","trade","ignore","unignore","userpage"]
    cast.entry.13=hh_human_leg
    cast.entry.14=hh_human_shoe
    cast.entry.15=hh_kiosk_room
    cast.entry.17=hh_room_utils
    cast.entry.16=hh_pets_common
    cast.entry.19=hh_furni_classes
    cast.entry.18=hh_room_ui
    link.format.credits=http://127.0.0.1/credits
    cfh.usercategories.withnoharasser=101,102,103,104,105,106
    room.cast.12=hh_human_50_fx
    interface.cmds.active.ctrl=["move","rotate"]
    room.cast.11=hh_human_fx
    avatar.editor.url=http://127.0.0.1/profile
    room.cast.10=hh_roomdimmer
    client.minimail.embed.enabled=true
    link.format.pets=http://127.0.0.1/hotel/pets
    room.cast.1=hh_soundmachine
    room.cast.2=hh_human_acc_chest
    room.cast.3=hh_human_acc_waist
    link.format.club=http://127.0.0.1/credits/habboclub
    club.subscription.disabled=1
    cfh.usercategories.withharasser=101,102,103,104,105,106
    room.cast.8=hh_human_50_acc_chest
    link.format.user.search=http://127.0.0.1/me#habbo-search
    room.cast.9=hh_human_50_acc_waist
    moderatoractionlog.url=https://theallseeingeye.sulake.com/ase/habbo/de/housekeeping/extra/hobba/moderator_activity.action?searchCriteria.habboName=
    link.format.habboclub=http://127.0.0.1/credits/habboclub
    room.cast.4=hh_human_50_shirt
    interstitial.interval=120000
    room.cast.5=hh_human_50_leg
    avatar.editor.character.update.url=http://127.0.0.1/profile/characterupdate
    room.cast.6=hh_human_50_shoe
    room.cast.7=hh_human_50_item
    navigator.tagcolorlimit.yellow=500
    interstitial.show.time=5000
    roomadmin.url=https://theallseeingeye.sulake.com/ase/habbo/de/housekeeping/extra/hobba/roomadmin_search.action?searchParamType=3&searchParamValue=
    avatar.editor.club.promo.image=http://images.habbohotel.com/c_images/catalogue/club_promo_uk.gif
    link.format.mail.compose=http://127.0.0.1/me#mail/compose/%recipientid%/%random%/
    room.rating.enable=1
    interface.cmds.user.personal=["badge","dance","wave","hcdance","userpage"]
    paalu.key.list=[#bal1:"Q", #bal2:"E", #push1:"A", #push2:"D", #move1:"N", #move2:"M", #stabilise:"SPACE"]
    navigator.cache.duration=30
    navigator.colorlimit.orange=80
    room.cast.private=["hh_room_private", "hh_room_landscapes"]
    link.format.userpage=http://127.0.0.1//rd/%ID%
    displayer.tag.expiration.time=600000
    navigator.default_tab=official
    navigator.tagcolorlimit.orange=1000
    client.full.refresh.period=5000
    interface.cmds.user.owner=["take_rights","give_rights","kick","friend","trade","ignore","unignore","userpage"]
    wordfilter.url=https://theallseeingeye.sulake.com/ase/habbo/de/housekeeping/extra/localization/wordfilter_select.action
    text.crap.fixing=1
    castload.retry.delay=20000
    roomenterad.habblet.enabled=true
    habboinfotool.url=https://64.186.134.147/housekeeping/users/searchParamName=username&database=Stats&searchParamValue=
    rosetta.warning.page.url=http://127.0.0.1_popup/rosetta_info
    link.format.tag.search=http://127.0.0.1//tag/search?tag=%tag%
    navigator.always_open_after_login=0
    interstitial.enabled=true
    pixels.enabled=true
    friendbar.enabled=true
    interface.cmds.item.owner=["pick"]
    cast.entry.42=hh_friend_list
    interface.cmds.photo.owner=["pick","delete"]
    cast.entry.41=hh_human_50_body
    room.cast.small.1=hh_pets_50
    cast.entry.44=hh_pets
    interface.cmds.active.owner=["move","rotate","pick"]
    cast.entry.43=hh_instant_messenger
    cast.entry.45=hh_guide
    embed.showInRoomInfo=true
    client.fatal.error.url=http://127.0.0.1_error
    cast.entry.40=hh_human_50_acc_head
    swimjump.key.list=[#run1:"A", #run2:"D", #dive1:"W", #dive2:"E", #dive3:"A", #dive4:"S", #dive5:"D", #dive6:"Y", #dive7:"X", #jump:"SPACE"]
    cast.entry.9=hh_human_item
    cast.entry.8=hh_human_face
    cast.entry.7=hh_human_body
    cast.entry.6=hh_human
    cast.entry.5=hh_patch_de
    cast.entry.4=hh_interface
    cast.entry.3=hh_shared
    cast.entry.2=hh_entry_base
    cast.entry.1=hh_entry_de
    client.credits.embed.enabled=true
    avatar.editor.trial.promo=1
    text.render.compatibility.mode=2
    moderator.cmds=[":alert x",":ban x",":kick x",":superban x",":shutup x",":unmute x",":transfer x",":softkick x"]
    cast.entry.38=hh_human_50_acc_eye
    cast.entry.39=hh_human_50_acc_face
    cast.entry.37=hh_human_50_hair
    cast.entry.36=hh_human_50_hats
    cast.entry.35=hh_human_50_face
    avatar.editor.club.promo=0
    cast.entry.34=hh_human_acc_head
    cast.entry.33=hh_human_acc_face
    cast.entry.32=hh_human_acc_eye
    cast.entry.31=hh_entry_init
    cast.entry.30=hh_badges
    navigator.colorlimit.yellow=50
    interstitial.max.displays=5
    client.flood.timeout=300000
    client.version.id=401
    navigator.tagcolorlimit.red=2000
    link.format.collectibles=http://127.0.0.1/credits/collectibles
    cast.entry.27=hh_dynamic_downloader
    cast.entry.28=hh_recycler
    cast.entry.29=hh_poll
    cast.entry.24=hh_cat_new
    cast.entry.23=hh_navigator
    cast.entry.26=hh_buffer
    cast.entry.25=hh_cat_gfx_all
    cast.entry.20=hh_room
    cast.entry.22=hh_photo
    infostand.report.show=1
    cast.entry.21=hh_club
    subscription.reminder.when.days.left=5
    navigator.colorlimit.red=92
    interface.cmds.user.ctrl=["kick","friend","trade","ignore","unignore","userpage"]
    interface.cmds.photo.ctrl=[]
    link.format.mail.inbox=http://127.0.0.1/me#mail
    interface.cmds.item.ctrl=[]
    lagWarningLog.enabled=1
    client.toolbar.static.enabled=true
    questing.startQuestDelayInSeconds=10
    client.hotel_view.show_on_startup=1
    cfh.usercategories.withnoharasser=101,102,103,104,105,106
    roominfo.widget.enabled=1
    navigator.always_open_after_login=0
    client.minimail.embed.enabled=true
    friend_bar.helper.friend_finding.enabled=true
    interstitial.enabled=true
    pixels.enabled=true
    questing.enabled=true
    welcome.screen.enabled=0
    link.format.club=http://%predefined%/credits/habboclub
    club.subscription.disabled=1
    cfh.usercategories.withharasser=101,102,103,104,105,106
    client.fatal.error.url=http://%predefined%/client_error
    embed.showInRoomInfo=true
    friendbar.enabled=true
    moderatoractionlog.url=https://theallseeingeye.sulake.com/ase/habbo/us/housekeeping/extra/hobba/moderator_activity.action?searchCriteria.habboName=
    interstitial.interval=120000
    roomadmin.url=https://theallseeingeye.sulake.com/ase/habbo/us/housekeeping/extra/hobba/roomadmin_search.action?searchParamType=3&searchParamValue=
    interstitial.show.time=5000
    client.allow.external.links=1
    client.credits.embed.enabled=true
    room.rating.enable=1
    navigator.colorlimit.yellow=50
    new.chat.widget.enabled=1
    interstitial.max.displays=8
    questing.defaultCampaign=room_builder
    navigator.colorlimit.orange=80
    link.format.collectibles=http://%predefined%/credits/collectibles
    link.format.userpage=http://%predefined%//rd/%ID%
    avatar.widget.enabled=1
    navigator.default_tab=official
    client.logout.enabled=true
    subscription.reminder.when.days.left=5
    infostand.report.show=1
    navigator.colorlimit.red=92
    client.news.embed.enabled=true
    purse.widget.enabled=1
    questing.showDetailsForNextQuest=true
    room.dragging.always_center=0
    client.allow.facebook.like=1
    catalog.drag_and_drop=true
    hover.name.enabled=true
    trax.player.sample.memory.purge.enabled=1
    standaloneAchievementList.enabled=true
    menu.own_avatar.enabled=1
    menu.avatar.enabled=true
    questing.useWing=true
    catalog.furniture.animation=true
    friendbar.notifications.enabled=true
    userdefinedroomevents.enabled=true
    room.recommendations=1
    avatar.editor.trial.promo=1
    userdefinedroomevents.enabled=true
    text.crap.fixing=1
    welcome.screen.enabled=1
    menu.avatar.enabled=true
    hover.name.enabled=true
    new.chat.bubbles.enabled=1
    infostand.use.button.enabled=1
    inventory.furni.tab.new=new
    questing.enabled=true
    standaloneAchievementList.enabled=true
    menu.own_avatar.enabled=1
    toolbar.new_additions.notification.enabled=true
    simple.memenu.enabled=1
    friendbar.requests.enabled=true
    friendbar.notifications.enabled=true
    friendbar.stream.enabled=true
    supersaverads.video.promo.enabled=true
    friendbar.playSnowStorm.enabled=true
    I don't understand what's wrong, everything was working, but now it's not... I've tried multiple SWF packs, but now it's not working..? What seems to be the problem? (Google Chrome Javascript logger below:
    Failed to load resource: the server responded with a status of 404 (Not Found)[COLOR=red !important]http://127.0.0.1/cacheCheck?r=1354603574287[/COLOR]
    [COLOR=red !important]Failed to load resource: the server responded with a status of 404 (Not Found) http://127.0.0.1/web-gallery/v2/imag...ash_player.gif[/COLOR]
    [COLOR=red !important]Failed to load resource: the server responded with a status of 404 (Not Found) http://127.0.0.1/clientlog/update[/COLOR]
    [COLOR=red !important]Failed to load resource: the server responded with a status of 404 (Not Found) http://127.0.0.1/clientlog/update[/COLOR]


    [/COLOR]
    action = [libraryLoaded], label = [hh_human_body.swf], value = [3280] habboflashclient.js:55
    action = [libraryLoaded], label = [hh_human_fx.swf], value = [3328] habboflashclient.js:55


    [/COLOR]


    [/COLOR]


    [/COLOR]


    [/COLOR]

    • [COLOR=red !important]Uncaught ReferenceError: HabboCounter is not defined client:179
      • [COLOR=red !important](anonymous function)[/COLOR]client:179

    [/COLOR]
    errorCode = Connection failed to host and ports
    I don't understand where I'm going wrong. So could someone please help me? And I'm not a noob for anyone who's asking, I've been making retros for years. Just been away for a while, came back and forgot some stuff, but I have the CMS all working perfect :) FYI: My emulator is licenced.


  2. #2
    Account Upgraded | Title Enabled! James MGN is offline
    MemberRank
    Nov 2012 Join Date
    CanadaLocation
    333Posts

    Re: UberCMS & Phoenix Emulator - Client not loading

    Same kind of thing happened to me, I had to screw around with the users table functions, I think something in the new Phx has changed the way it loads. Best thing I could suggest is getting rid of forumname completely or editing it to run properly with it. Sorry if this is confusing.. If you would like I could help you via skype? JamesMGN is my skype.

  3. #3
    Gamma Spamma Liam is offline
    MemberRank
    Dec 2011 Join Date
    Down UnderLocation
    2,946Posts

    Re: UberCMS & Phoenix Emulator - Client not loading

    Quote Originally Posted by James MGN View Post
    Same kind of thing happened to me, I had to screw around with the users table functions, I think something in the new Phx has changed the way it loads. Best thing I could suggest is getting rid of forumname completely or editing it to run properly with it. Sorry if this is confusing.. If you would like I could help you via skype? JamesMGN is my skype.
    I'm using UberCMS's original database with custom database edits/addons. Forumname is for rCMS/UberCMS 2 edit, I'm using my own edit witch doesn't need any of that. And it was working before, now it isn't. It must be the SWFs, but I don't know how, because I've redownloaded them many times..

  4. #4
    Account Upgraded | Title Enabled! James MGN is offline
    MemberRank
    Nov 2012 Join Date
    CanadaLocation
    333Posts

    Re: UberCMS & Phoenix Emulator - Client not loading

    Everything your explaining happened to me and the way I fixed it was playing around with the User table structure, but if you don't want me to help that is fine.

  5. #5
    Gamma Spamma Liam is offline
    MemberRank
    Dec 2011 Join Date
    Down UnderLocation
    2,946Posts

    Re: UberCMS & Phoenix Emulator - Client not loading

    It's not the user table structure, if it was then it will bring up a error. And it's not connecting to the emulator, so it's not sending something, or something is broken in the process of me editing everything. It was working on the same database and Emulator, and now it's not working..

  6. #6
    Gamma Spamma Liam is offline
    MemberRank
    Dec 2011 Join Date
    Down UnderLocation
    2,946Posts

    Re: UberCMS & Phoenix Emulator - Client not loading

    Still need help :3

  7. #7
    Gamma Spamma Liam is offline
    MemberRank
    Dec 2011 Join Date
    Down UnderLocation
    2,946Posts

    Re: UberCMS & Phoenix Emulator - Client not loading

    Still need help...

  8. #8
    No, Just no. Matthew is offline
    MemberRank
    Jul 2008 Join Date
    United KingdomLocation
    1,408Posts

    Re: UberCMS & Phoenix Emulator - Client not loading

    You don't need to run this query, I don't think:

    dbquery("UPDATE `users` SET `auth_ticket` = '" . $users->GetUserVar(USER_ID, "auth_ticket") . "' WHERE id = '" . USER_ID . "'");

  9. #9
    Enthusiast Hayd3n is offline
    MemberRank
    Oct 2012 Join Date
    40Posts

    Re: UberCMS & Phoenix Emulator - Client not loading

    Quote Originally Posted by Liam View Post
    Still need help...
    Try these SWF's http://zaphotel.net/r63.rar

  10. #10
    Gamma Spamma Liam is offline
    MemberRank
    Dec 2011 Join Date
    Down UnderLocation
    2,946Posts

    Re: UberCMS & Phoenix Emulator - Client not loading

    Still not working...

  11. #11
    Gamma Spamma Liam is offline
    MemberRank
    Dec 2011 Join Date
    Down UnderLocation
    2,946Posts

    Re: UberCMS & Phoenix Emulator - Client not loading

    Fixed, had to disable Norton :3



Advertisement