Client Re-directs to SWF folder

Detox

Member
Jul 24, 2010
365
24
Hello!

I need assistance with my hotel I got 95% of the hotel up and running. But when I enter the client It redirects to SWF folder

When I inspect the client I get 0 error.

My SWF path.

You can view these links

PHP:
https://habcheer.ca/ms-swf/gamedata/override/external_flash_override_texts.txt
https://habcheer.ca/ms-swf/gamedata/override/external_override_variables.txt
https://habcheer.ca/ms-swf/gamedata/external_variables.txt
https://habcheer.ca/ms-swf/gamedata/external_flash_texts.txt
https://habcheer.ca/ms-swf/gamedata/figuredata.xml
https://habcheer.ca/ms-swf/gamedata/figuremap.xml
https://habcheer.ca/ms-swf/gamedata/productdata.txt
https://habcheer.ca/ms-swf/gamedata/furnidata.xml


 

Detox

Member
Jul 24, 2010
365
24
can you post your client.php

PHP:
<?php
   Game::sso('client');
   Game::homeRoom();
   ?>
<html>
   </body>
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
      <title><?= $config['hotelName'] ?> - Hotel</title>
      <script src="/templates/brain/client/js/jquery-latest.js" type="text/javascript"></script>
      <script src="/templates/brain/client/js/jquery-ui.js" type="text/javascript"></script>
      <script src="/templates/brain/client/js/flashclient.js"></script>
      <script src="/templates/brain/client/js/flash_detect_min.js"></script>
      <script src="/templates/brain/client/js/browse.js"></script>
      <script src="/templates/brain/client/js/client.js" type="text/javascript"></script>
      <link rel="stylesheet" href="/templates/brain/client/css/client.css" type="text/css">
      <link rel="stylesheet" href="/templates/brain/client/css/no-flash.css" type="text/css">
   </head>
   <body>
      <center>
         <div id="client-ui">
         <div class="client" id="client"></div>
         <div class="hb-container" id="area-container">
            <h1 class="text" id="client-title"></h1>
            <div id="no-flash" style="display: none;">
               <div id="info-allow"></div>
               <div id="info-allow-button" style="display: none; text-align: center;">
                  <a href="https://get.adobe.com/nl/flashplayer/" target="_blank" id="allow-flash-button-extern" class="client-reload__button" style="display: none;"><?=$lang['nbutton']?></a>
                  <button id="allow-flash-button-more" class="client-reload__button" style="display: none; background-color: #f44336;border-color: #d66d66;color: #fff;"><?=$lang['nbuttonerror']?></button>
               </div>
               <p id="info-flash">
                  <?=$lang['ninfoflash']?>
                  <br /><br />
                 <?=$lang['ninfoflashtray']?><br /><br />
                  <b style="font-weight: bold;"><?=$lang['ninfoflashpc']?></b>
               </p>
               <div id="info-flash-extra">
                  <ul>
                     <li>Download <a href="https://get.adobe.com/nl/flashplayer/">Adobe Flash Player</a> <?=$lang['nfree']?></li>
                  </ul>
                  <br />
                  <b style="font-weight: bold;"><?=$lang['nenableflash']?></b>
                  <ul>
                     <li><?=$lang['nenableflashsee']?> <a target="_blank" href="https://helpx.adobe.com/nl/flash-player/kb/enabling-flash-player-chrome.html">Google Chrome</a>
                        <?=$lang['nenableflashinfo']?>
                     </li>
                     <li><?=$lang['nenableflashsee']?> <a target="_blank" href="https://helpx.adobe.com/nl/flash-player/kb/install-flash-player-windows.html">Internet Explorer</a> 
                        <?=$lang['nenableflashinfo']?>
                     </li>
                     <li><?=$lang['nenableflashsee']?> <a target="_blank" href="https://helpx.adobe.com/flash-player/kb/flash-player-issues-windows-10-edge.html">Microsoft Edge</a>
                        <?=$lang['nenableflashinfo']?>
                     </li>
                     <li><?=$lang['nenableflashsee']?> <a target="_blank" href="https://helpx.adobe.com/nl/flash-player/kb/enabling-flash-player-firefox.html">Firefox</a> 
                        <?=$lang['nenableflashinfo']?>
                     </li>
                     <li><?=$lang['nenableflashsee']?> <a target="_blank" href="https://helpx.adobe.com/nl/flash-player/kb/enabling-flash-player-safari.html">Apple Safari</a>
                        <?=$lang['nenableflashinfo']?>
                     </li>
                  </ul>
               </div>
            </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", "<?= $hotel['emuHost'] ?>");
            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", "<?= $config['hotelName'] ?> is loading...");
            Client.addVariable("flash.client.url", "<?= $hotel['swfFolder'] ?>/");
            Client.addVariable("flash.client.origin", "popup");
            Client.addVariable("ads.domain", "");
            Client.addVariable("diamonds.enabled", '<?= $hotel['diamonds.enabled'] ?>');
            Client.addParam('base', '<?= $hotel['swfFolder'] ?>/');
            Client.addParam('allowScriptAccess', 'always');
            Client.addParam('wmode', "opaque");
            Client.write('client');
            FlashExternalInterface.signoutUrl = "<?= $config['hotelUrl'] ?>/logout";
            
            $(document).ready(function() {
            if (!FlashDetect.installed) {
            $("#disconnected, #hide-message,#client-support, #no-flash").show();
            $("#client").hide();
            if (bowser.chrome) {
                $("#client-reload, #hide-message, #client-support, #info-flash, #info-flash-extra").hide();
                $("#client-title").html('<?=$lang['ntitlechrome']?>');
                $("#info-allow").html('<?=$lang['ntxtchrome']?>');
                $("#info-allow-button, #allow-flash-button-extern").show();
            } else if (bowser.msedge) {
                $("#client-reload, #hide-message, #client-support, #info-flash, #info-flash-extra").hide();
                $("#client-title").html('<?=$lang['ntitleedge']?>');
                $("#info-allow").html('<?=$lang['ntxtedge']?>');
                $("#info-allow-button, #allow-flash-button-extern").show();
            }
            $("#disconnected").show().css('z-index', 0);
            $("#flash-wrapper").remove();
            $(".roomenterad-habblet-container").hide();
            connection = false;
            }
            });
            $('#allow-flash-button-extern').click(function(event){
            if(bowser.chrome){
            $("#info-allow").html('<?=$lang['ntxtchromeerror']?>');
            event.stopPropagation();
            }
            if(bowser.msedge){
            $("#info-allow").html('<?=$lang['ntxtedgeerror']?>');
            event.stopPropagation();
            }
            $("#allow-flash-button-extern").hide();
            $("#allow-flash-button-more").show();
            });
            $('#allow-flash-button-more').click(function(){
            if(bowser.chrome){
            location.href="https://get.adobe.com/nl/flashplayer/";
            }
            });
         </script>
      </center>
   </body>
</html>
 

Users who are viewing this thread

Top