Iplace CMS - Official release!

Status
Not open for further replies.

HDJoWa

New Member
Jun 14, 2014
11
0
rs4.php:
PHP:
<?php

/*
*****************
* @author capos *
*****************
*/

$width = 100;
$height = 114;

function buildimg($bytes, $width, $height)
{
    $img=imagecreatetruecolor($width, $height);imagealphablending($img, false);imagesavealpha($img, true);$x=0;$y=0;
    $colors=unpack("N*", $bytes);
    foreach($colors as $color)
    {
        imagesetpixel($img, $x, $y, (0x7f-($color>>25)<<24)|($color&0xffffff));
        if(++$x==$width)
        {$x=0;$y++;}
    }
    header('Content-Type: image/png');
    imagepng($img);
}

$pixels = file_get_contents('./banner.txt'); // the banner pixels

if($_GET)
{
    $token = trim($_GET["token"]);
    if(strlen($token) >= 10)
    {   
        // Stuff to connect to mus and get banner data.. (prime and generator)
        /*$fp = fsockopen("127.0.0.1", 30000, $errno, $errstr, 1);
        if (!is_resource($fp))
        {
            exit("LE FAIL...");
        }
       
        $packet = '0'.chr(1).$token;

        fwrite($fp, $packet);
        fflush($fp);
       
        stream_set_timeout($fp, 1);
        $data = fgets($fp, 512);
        list($prime, $generator) = explode(':', $data);
        fclose($fp);*/
       
        $prime = '114670925920269957593299136150366957983142588366300079186349531';
        $generator = '1589935137502239924254699078669119674538324391752663931735947';

        $insert = chr(strlen($prime)).$prime.chr(strlen($generator)).$generator;
        $Length = strlen($token);$Length2 = strlen($insert);
        $p = 0;$bitsnum = "";
        for($i=0;$i<$Length2;$i++)
        {
            $bits = base_convert(ord($insert[$i]) ^ ord($token[$p]),10,2);
            $need = 8 - strlen($bits);
            for($o=0;$o<$need;$o++)$bits = "0".$bits;
            $bitsnum .= $bits;
            if (++$p == $Length) $p = 0;
        }
        $insertpos = 0;$Length = strlen($bitsnum);
        for ($y = 39; $y < 69; $y++)
        {
            $a = 0;
            for ($r = 4; $r < 84; $r++)
            {
                $pos = (($y + $a) * $width + $r) * 4;
                $b = 1;
                while ($b < 4)
                {
                    if($insertpos < $Length)
                    {
                        $binaryData = base_convert(ord($pixels[$pos + $b]),10,2);
                        $need = 8 - strlen($binaryData);
                        for($o=0;$o<$need;$o++) $binaryData = "0".$binaryData;
                        $binaryData[7] = $bitsnum[$insertpos];
                        $pixels[$pos + $b] = chr(base_convert($binaryData,2,10));
                        $insertpos++;$b++;
                        continue;
                    }
                    break 3;
                }
                if ($r % 2 == 0) $a++;
            }
        }
       
    }
}
buildimg($pixels, $width, $height);
?>

client.php:

PHP:
<?php
    /** ************************************************\
     *  Iplace CMS                                       \
     *  @copyright 2014                                   \
     *  @since 2013                                        \
     *  @author Jasler.nl                                   \
     *  @link http://jasler.nl/iplace/                       \
     *  @deprecated OLDER VERSIONS LOWER THAN THIS ONE        \
     *  @name Iplace CMS                                       \
     *  @license FREE LIFE LICENCE                              \
     *  @tutorial http://jasler.nl/iplace/tutorial/             /
     *                                                         /
     *  DON'T CHANGE SOMETHING IF YOU DON'T                   /
     *  KNOW HOW IT WORKS!                                   /
     *                                                      /
     *  © 2013 Iplace CMS Project & Iplace Hotel           /
     *  ORIGINAL CMS MAKER: JASPER VRIENDS - JASLER.NL    |
     *****************************************************/
   
    $myClientEmulator = 1;
   
    if($myClientEmulator == 1) { // Plus Emulator
        require("./client_plus_emu.php");
        die;
    }else if($myClientEmulator == 2) { // Phoenix Emulator
        require("./client_phoenix_emu.php");
        die;
    }else{
        // Other emulator
    }
   
    $LOGIN_TRUE = true;
    include("./global.php");
   
    $hotelRoomForwardId = "1"; // Do you want forward your users automaticly to a room?
                               // Just put the ID of the room here :) (Or not? A random not exist room number like 03945693563905639563956395639563956389563956 or 'false')
?>
<html>
<head>
    <title><?php echo $_WEBSITE["HTL"]["name"] ?> Hotel: Client</title>
<script type="text/javascript">
        var habboName = "<?php echo $_USER["AVATAR"]["username"] ?>";
        var habboReqPath = "<?php echo $_WEBSITE['CMS']['url'] ?>";
        var habboStaticFilePath = "http://images.habbo.com/habboweb/<?php echo $_WEBSITE["CMS"]["webbuild"]; ?>/web-gallery";
        var habboImagerUrl = "http://www.habbo.com/habbo-imaging/";
        var habboPartner = "";
        var habboDefaultClientPopupUrl = "<?php echo $_WEBSITE['CMS']['url'] ?>/client";
        window.name = "ClientWndw";
        if (typeof HabboClient != "undefined") { HabboClient.windowName = "ClientWndw"; }
    </script>

<script src="http://jasler.nl/hybonehtl/client/libs2.js" type="text/javascript"></script>
<script src="http://jasler.nl/hybonehtl/client/visual.js" type="text/javascript"></script>
<script src="http://jasler.nl/hybonehtl/client/libs.js" type="text/javascript"></script>
<script src="http://jasler.nl/hybonehtl/client/common.js" type="text/javascript"></script>
<!--script src="<?php echo $_WEBSITE['CMS']['url']; ?>/client/hyboneclientaddon_v6.js" type="text/javascript"></script-->
<link rel="stylesheet" href="http://jasler.nl/hybonehtl/css/website.css" type="text/css" />
<link rel="stylesheet" href="http://images.habbo.com/habboweb/<?php echo $_WEBSITE["CMS"]["webbuild"]; ?>/web-gallery/static/styles/common.css" type="text/css" />
<link rel="stylesheet" href="http://images.habbo.com/habboweb/<?php echo $_WEBSITE["CMS"]["webbuild"]; ?>/web-gallery/static/styles/habboflashclient.css" type="text/css" />
<noscript>
    <meta http-equiv="refresh" content="0;url=/client/nojs" />
</noscript>
<link rel="stylesheet" href="<?php echo $_WEBSITE['CMS']['url']; ?>/client/client.css" type="text/css" />
<script src="http://jasler.nl/hybonehtl/client/habboflashclient_v4.js" type="text/javascript"></script>

<script type="text/javascript">
    FlashExternalInterface.loginLogEnabled = true;

    FlashExternalInterface.logLoginStep("web.view.start");

    if (top == self) {
        FlashHabboClient.cacheCheck();
    }
   
    var flashvars = {
        "client.allow.cross.domain" : "1",
        "client.notify.cross.domain" : "0",
        "connection.info.host" : "<?php echo $_WEBSITE['CLIENT']['server_ip']; ?>",
        "connection.info.port" : "<?php echo $_WEBSITE['CLIENT']['server_port']; ?>",
        "site.url" : "<?php echo $_WEBSITE['CMS']['url'] ?>",
        "url.prefix" : "<?php echo $_WEBSITE['CMS']['url'] ?>",
        "client.reload.url" : "<?php echo $_WEBSITE['CMS']['url'] ?>/client_nl",
        "client.fatal.error.url" : "<?php echo $_WEBSITE['CMS']['url'] ?>/disconnected",
        "client.connection.failed.url" : "<?php echo $_WEBSITE['CMS']['url'] ?>/disconnected",
        "external.variables.txt" : "<?php echo $_WEBSITE['CLIENT']['external_vars'] ?>",
        "external.texts.txt" : "<?php echo $_WEBSITE['CLIENT']['external_texts']; ?>",
        "productdata.load.url" : "<?php echo $_WEBSITE['CLIENT']['product_data']; ?>", <?php /** if($user_rank !== "9"){ echo $_WEBSITE['CLIENT']['product_data']; }else{ echo 'http://jasler.nl/hybone_swfs/productdata_en.txt'; /*}*/ ?>
       
        "furnidata.load.url" : "<?php echo $_WEBSITE['CLIENT']['furni_data'] ?>",
        "use.sso.ticket" : "1",
        "sso.ticket" : "<?php echo createSSOticket($_USER["AVATAR"]["id"]); ?>",
        "processlog.enabled" : "1",
        "account_id" : "1",
        "client.starting" : "Wacht alsjeblieft! <?php echo $_WEBSITE['HTL']['name']; ?> start op :)",
        "flash.client.url" : "<?php echo $_WEBSITE['CLIENT']['swf_folder'] ?>/",
        "user.hash" : "31385693ae558a03d28fc720be6b41cb1ccfec02",
        "has.identity" : "1",
        "flash.client.origin" : "popup" ,
        "forward.type" : "<?php if(isset($_GET["forwardId"])) { echo $_GET["forwardId"]; }else if(getInformationATR($_USER["AVATAR"]["id"], "home_room") !== "0") { echo "2"; }else{ echo "2"; } ?>",
        "forward.id" : "<?php if(isset($_GET["roomId"])) { echo $_GET["roomId"]; }else if(getInformationATR($_USER["AVATAR"]["id"], "home_room") !== "0") { echo getInformationATR($_USER["AVATAR"]["id"], "home_room"); }else{ echo $hotelRoomForwardId; }?>",
       

    };
   
    var params = {
        "base" : "<?php echo $_WEBSITE['CLIENT']['swf_folder'] ?>/",
        "allowScriptAccess" : "always",
        "menu" : "false",
    };
   
    if (!(HabbletLoader.needsFlashKbWorkaround())) {
        params["wmode"] = "opaque";
    }
   
    FlashExternalInterface.signoutUrl = "{}";

    var clientUrl = "<?php echo $_WEBSITE['CLIENT']['swf_hotelswf'] ?>";

    swfobject.embedSWF(clientUrl, "flash-container", "100%", "100%", "10.0.0", "http://images.habbo.com/habboweb/<?php echo $_WEBSITE["CMS"]["webbuild"]; ?>/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>
<style>
#WindowAlerts {
    position: absolute;
    width: 460px;
    right: 0px;
    top: 0px;
    z-index: 9;
}

.habblet-container {         
    margin: 5px;
    background: #FFFFFF;
    border: 1px solid #86B1BD;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.habblet-container .i1 {
    background: #FFFFFF;
}

.habblet-container .i2 {
    padding: 0;
    border: 0;
    background: #FFFFFF;
}

#WindowAlerts .innertext_t {
    padding: 5px;
    color: #000000;
}

/* habbo style buttons */
.habbobutton{
    height: 25px;
    border:solid 2px black;
    border-radius: 3px;
    cursor: pointer;
    padding:0px 15px 2px 15px;
    font-weight: bold;   
    font-size: 11px;
    font-family: Verdana;
}

.habbobutton.green{
    background-color: #2C7E00;
    box-shadow: inset 1px 1px 0px 0px #2C7E00, inset -6px 0px 0px -5px #2C7E00, inset 0px 11px 0px 0px #3BA800;
    color: white;
}

.habbobutton.green:hover{
    background-color: #339D00;
    box-shadow: inset 1px 1px 0px 0px #339D00, inset -6px 0px 0px -5px #339D00, inset 0px 11px 0px 0px #45CB00;
}

.habbobutton.white{
    background-color: #CCCCCC;
    box-shadow: inset 1px 1px 0px 0px #CCCCCC, inset -6px 0px 0px -5px #CCCCCC, inset 0px 11px 0px 0px #fff;
    color: black;
}

.habbobutton.white:hover{
    background-color: #EAEAEA;
    box-shadow: inset 1px 1px 0px 0px #EAEAEA, inset -6px 0px 0px -5px #EAEAEA, inset 0px 11px 0px 0px #fff;
}

.habbobutton.grey{
    background-color: #606060;
    box-shadow: inset 1px 1px 0px 0px #606060, inset -6px 0px 0px -5px #606060, inset 0px 11px 0px 0px #888888;
    color: white;
}

.habbobutton.grey:hover{
    background-color: #7C7C7C;
    box-shadow: inset 1px 1px 0px 0px #7C7C7C, inset -6px 0px 0px -5px #7C7C7C, inset 0px 11px 0px 0px #A8A8A8;
}

.habbobutton.red{
    background-color: #B50000;
    box-shadow: inset 1px 1px 0px 0px #B50000, inset -6px 0px 0px -5px #B50000, inset 0px 11px 0px 0px #DE0000;
    color: white;
}

.habbobutton.red:hover{
    background-color: #D70000;
    box-shadow: inset 1px 1px 0px 0px #D70000, inset -6px 0px 0px -5px #D70000, inset 0px 11px 0px 0px #FF1616;
}

.habbobutton.purple{
    background-color: #800080;
    box-shadow: inset 1px 1px 0px 0px #800080, inset -6px 0px 0px -5px #800080, inset 0px 11px 0px 0px #D500D5;
    color: white;
}

.habbobutton.purple:hover{
    background-color: #C600C6;
    box-shadow: inset 1px 1px 0px 0px #C600C6, inset -6px 0px 0px -5px #C600C6, inset 0px 11px 0px 0px #FF1CFF;
}

.habbobutton.orange{
    background-color: #D56A00;
    box-shadow: inset 1px 1px 0px 0px #D56A00, inset -6px 0px 0px -5px #D56A00, inset 0px 11px 0px 0px #E67300;
    color: white;
}

.habbobutton.orange{
    background-color: #D56A00;
    box-shadow: inset 1px 1px 0px 0px #D56A00, inset -6px 0px 0px -5px #D56A00, inset 0px 11px 0px 0px #E67300;
    color: white;
}

.habbobutton.orange:hover{
    background-color: #F07800;
    box-shadow: inset 1px 1px 0px 0px #F07800, inset -6px 0px 0px -5px #F07800, inset 0px 11px 0px 0px #FF8204;
    color: white;
}

#client-ui.x-workaround-feed { background-color: #FFFFFF }
.client-content { color: #FFFFFF }

body {
    background: #FFFFFF;
}
</style>
</head>
<body id="client" class="flashclient" onload="StartChecker()">
<div id="overlay"></div>
<div id="WindowAlerts"></div>
<img src="http://images.habbo.com/habboweb/<?php echo $_WEBSITE["CMS"]["webbuild"]; ?>/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">Bitte Update deinen Flashplayer.</h2>
    <div class="box-content">
            <p>Hier kannst du es downloaden: <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="http://images.habbo.com/habboweb/<?php echo $_WEBSITE["CMS"]["webbuild"]; ?>/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>
    <div style="display: none">

<div id="habboCountUpdateTarget">
{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 src="http://code.jquery.com/jquery-1.9.1.js"></script>
 

IPMB1

Member
Jan 1, 2013
249
20
rs4.php:
PHP:
<?php

/*
*****************
* @author capos *
*****************
*/

$width = 100;
$height = 114;

function buildimg($bytes, $width, $height)
{
    $img=imagecreatetruecolor($width, $height);imagealphablending($img, false);imagesavealpha($img, true);$x=0;$y=0;
    $colors=unpack("N*", $bytes);
    foreach($colors as $color)
    {
        imagesetpixel($img, $x, $y, (0x7f-($color>>25)<<24)|($color&0xffffff));
        if(++$x==$width)
        {$x=0;$y++;}
    }
    header('Content-Type: image/png');
    imagepng($img);
}

$pixels = file_get_contents('./banner.txt'); // the banner pixels

if($_GET)
{
    $token = trim($_GET["token"]);
    if(strlen($token) >= 10)
    {   
        // Stuff to connect to mus and get banner data.. (prime and generator)
        /*$fp = fsockopen("127.0.0.1", 30000, $errno, $errstr, 1);
        if (!is_resource($fp))
        {
            exit("LE FAIL...");
        }
       
        $packet = '0'.chr(1).$token;

        fwrite($fp, $packet);
        fflush($fp);
       
        stream_set_timeout($fp, 1);
        $data = fgets($fp, 512);
        list($prime, $generator) = explode(':', $data);
        fclose($fp);*/
       
        $prime = '114670925920269957593299136150366957983142588366300079186349531';
        $generator = '1589935137502239924254699078669119674538324391752663931735947';

        $insert = chr(strlen($prime)).$prime.chr(strlen($generator)).$generator;
        $Length = strlen($token);$Length2 = strlen($insert);
        $p = 0;$bitsnum = "";
        for($i=0;$i<$Length2;$i++)
        {
            $bits = base_convert(ord($insert[$i]) ^ ord($token[$p]),10,2);
            $need = 8 - strlen($bits);
            for($o=0;$o<$need;$o++)$bits = "0".$bits;
            $bitsnum .= $bits;
            if (++$p == $Length) $p = 0;
        }
        $insertpos = 0;$Length = strlen($bitsnum);
        for ($y = 39; $y < 69; $y++)
        {
            $a = 0;
            for ($r = 4; $r < 84; $r++)
            {
                $pos = (($y + $a) * $width + $r) * 4;
                $b = 1;
                while ($b < 4)
                {
                    if($insertpos < $Length)
                    {
                        $binaryData = base_convert(ord($pixels[$pos + $b]),10,2);
                        $need = 8 - strlen($binaryData);
                        for($o=0;$o<$need;$o++) $binaryData = "0".$binaryData;
                        $binaryData[7] = $bitsnum[$insertpos];
                        $pixels[$pos + $b] = chr(base_convert($binaryData,2,10));
                        $insertpos++;$b++;
                        continue;
                    }
                    break 3;
                }
                if ($r % 2 == 0) $a++;
            }
        }
       
    }
}
buildimg($pixels, $width, $height);
?>

client.php:

PHP:
<?php
    /** ************************************************\
     *  Iplace CMS                                       \
     *  @copyright 2014                                   \
     *  @since 2013                                        \
     *  @author Jasler.nl                                   \
     *  @link http://jasler.nl/iplace/                       \
     *  @deprecated OLDER VERSIONS LOWER THAN THIS ONE        \
     *  @name Iplace CMS                                       \
     *  @license FREE LIFE LICENCE                              \
     *  @tutorial http://jasler.nl/iplace/tutorial/             /
     *                                                         /
     *  DON'T CHANGE SOMETHING IF YOU DON'T                   /
     *  KNOW HOW IT WORKS!                                   /
     *                                                      /
     *  © 2013 Iplace CMS Project & Iplace Hotel           /
     *  ORIGINAL CMS MAKER: JASPER VRIENDS - JASLER.NL    |
     *****************************************************/
   
    $myClientEmulator = 1;
   
    if($myClientEmulator == 1) { // Plus Emulator
        require("./client_plus_emu.php");
        die;
    }else if($myClientEmulator == 2) { // Phoenix Emulator
        require("./client_phoenix_emu.php");
        die;
    }else{
        // Other emulator
    }
   
    $LOGIN_TRUE = true;
    include("./global.php");
   
    $hotelRoomForwardId = "1"; // Do you want forward your users automaticly to a room?
                               // Just put the ID of the room here :) (Or not? A random not exist room number like 03945693563905639563956395639563956389563956 or 'false')
?>
<html>
<head>
    <title><?php echo $_WEBSITE["HTL"]["name"] ?> Hotel: Client</title>
<script type="text/javascript">
        var habboName = "<?php echo $_USER["AVATAR"]["username"] ?>";
        var habboReqPath = "<?php echo $_WEBSITE['CMS']['url'] ?>";
        var habboStaticFilePath = "http://images.habbo.com/habboweb/<?php echo $_WEBSITE["CMS"]["webbuild"]; ?>/web-gallery";
        var habboImagerUrl = "http://www.habbo.com/habbo-imaging/";
        var habboPartner = "";
        var habboDefaultClientPopupUrl = "<?php echo $_WEBSITE['CMS']['url'] ?>/client";
        window.name = "ClientWndw";
        if (typeof HabboClient != "undefined") { HabboClient.windowName = "ClientWndw"; }
    </script>

<script src="http://jasler.nl/hybonehtl/client/libs2.js" type="text/javascript"></script>
<script src="http://jasler.nl/hybonehtl/client/visual.js" type="text/javascript"></script>
<script src="http://jasler.nl/hybonehtl/client/libs.js" type="text/javascript"></script>
<script src="http://jasler.nl/hybonehtl/client/common.js" type="text/javascript"></script>
<!--script src="<?php echo $_WEBSITE['CMS']['url']; ?>/client/hyboneclientaddon_v6.js" type="text/javascript"></script-->
<link rel="stylesheet" href="http://jasler.nl/hybonehtl/css/website.css" type="text/css" />
<link rel="stylesheet" href="http://images.habbo.com/habboweb/<?php echo $_WEBSITE["CMS"]["webbuild"]; ?>/web-gallery/static/styles/common.css" type="text/css" />
<link rel="stylesheet" href="http://images.habbo.com/habboweb/<?php echo $_WEBSITE["CMS"]["webbuild"]; ?>/web-gallery/static/styles/habboflashclient.css" type="text/css" />
<noscript>
    <meta http-equiv="refresh" content="0;url=/client/nojs" />
</noscript>
<link rel="stylesheet" href="<?php echo $_WEBSITE['CMS']['url']; ?>/client/client.css" type="text/css" />
<script src="http://jasler.nl/hybonehtl/client/habboflashclient_v4.js" type="text/javascript"></script>

<script type="text/javascript">
    FlashExternalInterface.loginLogEnabled = true;

    FlashExternalInterface.logLoginStep("web.view.start");

    if (top == self) {
        FlashHabboClient.cacheCheck();
    }
   
    var flashvars = {
        "client.allow.cross.domain" : "1",
        "client.notify.cross.domain" : "0",
        "connection.info.host" : "<?php echo $_WEBSITE['CLIENT']['server_ip']; ?>",
        "connection.info.port" : "<?php echo $_WEBSITE['CLIENT']['server_port']; ?>",
        "site.url" : "<?php echo $_WEBSITE['CMS']['url'] ?>",
        "url.prefix" : "<?php echo $_WEBSITE['CMS']['url'] ?>",
        "client.reload.url" : "<?php echo $_WEBSITE['CMS']['url'] ?>/client_nl",
        "client.fatal.error.url" : "<?php echo $_WEBSITE['CMS']['url'] ?>/disconnected",
        "client.connection.failed.url" : "<?php echo $_WEBSITE['CMS']['url'] ?>/disconnected",
        "external.variables.txt" : "<?php echo $_WEBSITE['CLIENT']['external_vars'] ?>",
        "external.texts.txt" : "<?php echo $_WEBSITE['CLIENT']['external_texts']; ?>",
        "productdata.load.url" : "<?php echo $_WEBSITE['CLIENT']['product_data']; ?>", <?php /** if($user_rank !== "9"){ echo $_WEBSITE['CLIENT']['product_data']; }else{ echo 'http://jasler.nl/hybone_swfs/productdata_en.txt'; /*}*/ ?>
       
        "furnidata.load.url" : "<?php echo $_WEBSITE['CLIENT']['furni_data'] ?>",
        "use.sso.ticket" : "1",
        "sso.ticket" : "<?php echo createSSOticket($_USER["AVATAR"]["id"]); ?>",
        "processlog.enabled" : "1",
        "account_id" : "1",
        "client.starting" : "Wacht alsjeblieft! <?php echo $_WEBSITE['HTL']['name']; ?> start op :)",
        "flash.client.url" : "<?php echo $_WEBSITE['CLIENT']['swf_folder'] ?>/",
        "user.hash" : "31385693ae558a03d28fc720be6b41cb1ccfec02",
        "has.identity" : "1",
        "flash.client.origin" : "popup" ,
        "forward.type" : "<?php if(isset($_GET["forwardId"])) { echo $_GET["forwardId"]; }else if(getInformationATR($_USER["AVATAR"]["id"], "home_room") !== "0") { echo "2"; }else{ echo "2"; } ?>",
        "forward.id" : "<?php if(isset($_GET["roomId"])) { echo $_GET["roomId"]; }else if(getInformationATR($_USER["AVATAR"]["id"], "home_room") !== "0") { echo getInformationATR($_USER["AVATAR"]["id"], "home_room"); }else{ echo $hotelRoomForwardId; }?>",
       

    };
   
    var params = {
        "base" : "<?php echo $_WEBSITE['CLIENT']['swf_folder'] ?>/",
        "allowScriptAccess" : "always",
        "menu" : "false",
    };
   
    if (!(HabbletLoader.needsFlashKbWorkaround())) {
        params["wmode"] = "opaque";
    }
   
    FlashExternalInterface.signoutUrl = "{}";

    var clientUrl = "<?php echo $_WEBSITE['CLIENT']['swf_hotelswf'] ?>";

    swfobject.embedSWF(clientUrl, "flash-container", "100%", "100%", "10.0.0", "http://images.habbo.com/habboweb/<?php echo $_WEBSITE["CMS"]["webbuild"]; ?>/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>
<style>
#WindowAlerts {
    position: absolute;
    width: 460px;
    right: 0px;
    top: 0px;
    z-index: 9;
}

.habblet-container {         
    margin: 5px;
    background: #FFFFFF;
    border: 1px solid #86B1BD;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.habblet-container .i1 {
    background: #FFFFFF;
}

.habblet-container .i2 {
    padding: 0;
    border: 0;
    background: #FFFFFF;
}

#WindowAlerts .innertext_t {
    padding: 5px;
    color: #000000;
}

/* habbo style buttons */
.habbobutton{
    height: 25px;
    border:solid 2px black;
    border-radius: 3px;
    cursor: pointer;
    padding:0px 15px 2px 15px;
    font-weight: bold;   
    font-size: 11px;
    font-family: Verdana;
}

.habbobutton.green{
    background-color: #2C7E00;
    box-shadow: inset 1px 1px 0px 0px #2C7E00, inset -6px 0px 0px -5px #2C7E00, inset 0px 11px 0px 0px #3BA800;
    color: white;
}

.habbobutton.green:hover{
    background-color: #339D00;
    box-shadow: inset 1px 1px 0px 0px #339D00, inset -6px 0px 0px -5px #339D00, inset 0px 11px 0px 0px #45CB00;
}

.habbobutton.white{
    background-color: #CCCCCC;
    box-shadow: inset 1px 1px 0px 0px #CCCCCC, inset -6px 0px 0px -5px #CCCCCC, inset 0px 11px 0px 0px #fff;
    color: black;
}

.habbobutton.white:hover{
    background-color: #EAEAEA;
    box-shadow: inset 1px 1px 0px 0px #EAEAEA, inset -6px 0px 0px -5px #EAEAEA, inset 0px 11px 0px 0px #fff;
}

.habbobutton.grey{
    background-color: #606060;
    box-shadow: inset 1px 1px 0px 0px #606060, inset -6px 0px 0px -5px #606060, inset 0px 11px 0px 0px #888888;
    color: white;
}

.habbobutton.grey:hover{
    background-color: #7C7C7C;
    box-shadow: inset 1px 1px 0px 0px #7C7C7C, inset -6px 0px 0px -5px #7C7C7C, inset 0px 11px 0px 0px #A8A8A8;
}

.habbobutton.red{
    background-color: #B50000;
    box-shadow: inset 1px 1px 0px 0px #B50000, inset -6px 0px 0px -5px #B50000, inset 0px 11px 0px 0px #DE0000;
    color: white;
}

.habbobutton.red:hover{
    background-color: #D70000;
    box-shadow: inset 1px 1px 0px 0px #D70000, inset -6px 0px 0px -5px #D70000, inset 0px 11px 0px 0px #FF1616;
}

.habbobutton.purple{
    background-color: #800080;
    box-shadow: inset 1px 1px 0px 0px #800080, inset -6px 0px 0px -5px #800080, inset 0px 11px 0px 0px #D500D5;
    color: white;
}

.habbobutton.purple:hover{
    background-color: #C600C6;
    box-shadow: inset 1px 1px 0px 0px #C600C6, inset -6px 0px 0px -5px #C600C6, inset 0px 11px 0px 0px #FF1CFF;
}

.habbobutton.orange{
    background-color: #D56A00;
    box-shadow: inset 1px 1px 0px 0px #D56A00, inset -6px 0px 0px -5px #D56A00, inset 0px 11px 0px 0px #E67300;
    color: white;
}

.habbobutton.orange{
    background-color: #D56A00;
    box-shadow: inset 1px 1px 0px 0px #D56A00, inset -6px 0px 0px -5px #D56A00, inset 0px 11px 0px 0px #E67300;
    color: white;
}

.habbobutton.orange:hover{
    background-color: #F07800;
    box-shadow: inset 1px 1px 0px 0px #F07800, inset -6px 0px 0px -5px #F07800, inset 0px 11px 0px 0px #FF8204;
    color: white;
}

#client-ui.x-workaround-feed { background-color: #FFFFFF }
.client-content { color: #FFFFFF }

body {
    background: #FFFFFF;
}
</style>
</head>
<body id="client" class="flashclient" onload="StartChecker()">
<div id="overlay"></div>
<div id="WindowAlerts"></div>
<img src="http://images.habbo.com/habboweb/<?php echo $_WEBSITE["CMS"]["webbuild"]; ?>/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">Bitte Update deinen Flashplayer.</h2>
    <div class="box-content">
            <p>Hier kannst du es downloaden: <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="http://images.habbo.com/habboweb/<?php echo $_WEBSITE["CMS"]["webbuild"]; ?>/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>
    <div style="display: none">

<div id="habboCountUpdateTarget">
{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 src="http://code.jquery.com/jquery-1.9.1.js"></script>
config.php? Also does the emu saying something?
 

HDJoWa

New Member
Jun 14, 2014
11
0
config:

PHP:
<?php
    /** ************************************************\
     *  Iplace CMS                                       \
     *  @copyright 2014                                   \
     *  @since 2013                                        \
     *  @author Jasler.nl                                   \
     *  @link http://jasler.nl/iplace/                       \
     *  @deprecated OLDER VERSIONS LOWER THAN THIS ONE        \
     *  @name Iplace CMS                                       \
     *  @license FREE LIFE LICENCE                              \
     *  @tutorial http://jasler.nl/iplace/tutorial/             /
     *                                                         /
     *  DON'T CHANGE SOMETHING IF YOU DON'T                   /
     *  KNOW HOW IT WORKS!                                   /
     *                                                      /
     *  © 2013 Iplace CMS Project & Iplace Hotel           /
     *  ORIGINAL CMS MAKER: JASPER VRIENDS - JASLER.NL    |
     *                                                    |
     *          BUILD 18                                  |
     *          DATE: 09-05-2014                          |
     *          COPYRIGHTS: Jasper Vriends                |
     *          INFO: http://jasler.nl/iplace/            |
     *          UPDATE IC1.9                              |
     *                                                    |
     *       FIRST TIME? USE THE /install/ PLEASE!!!      |
     *                                                    |
     *****************************************************/
   
    /** DATABASE */
    $_WEBSITE["DB"]["host"] = "localhost"; // Database host (Like "localhost")
  
    $_WEBSITE["DB"]["username"] = "root"; // Database username (Like "root")
  
    $_WEBSITE["DB"]["password"] = ""; // Database password (Like "password" or empty)
  
    $_WEBSITE["DB"]["database"] = "db"; // Database name (Like "myhotelDB")
  
    /** CMS */
  
    $_WEBSITE["CMS"]["url"] = "http://127.0.0.1"; // Website addres with no / at the end
  
    $_WEBSITE["CMS"]["url2"] = "http://iplacehotel.nl";
  
    $_WEBSITE["CMS"]["psswd_hash"] = "xCg532%@%gdvf^5DGaa6&*rFTfg^FD4\(ugf*/"; //Password hash
  
    $_WEBSITE["CMS"]["maintenance"] = false; // Is your hotel in maintenance? Yes = true || No = false
  
    $_WEBSITE["CMS"]["isEnabledSentToHotelIsOfflinePage"] = true; // Is the CMS allowed to rederict the user when there is no Server connection to the ./hoteloffline page? - true = yes; false = no
  
    $_WEBSITE["CMS"]["onleyClientOpenIfServerConnected"] = false; // Set client closed if hotel is offline
  
    $_WEBSITE["CMS"]["layout"] = 1; // You can choose between 2 templates, 1 is Habbo normal template, 2 is other Habbo like template
  
    $_WEBSITE["CMS"]["activation_email"] = false; // Do you want that your users need to activate their email?
  
    $_WEBSITE["CMS"]["activation_auto_login"] = true; // If they activated they account is it okey to login them automaticly (Via link from the email (works once))?
  
    $_WEBSITE["CMS"]["activation_email_template"] = 2; // If there is an activation needed you have a new and a old email template :) 1 = new template; all other numbers is the old template
  
    $_WEBSITE["CMS"]["login_username"] = true; // Are the users enabled to login with thair username AND email?
  
    $_WEBSITE["CMS"]["webbuild"] = "63_1dc60c6d6ea6e089c6893ab4e0541ee0/2486"; // The webbuild if you need to use it (Like the client)
    //$_WEBSITE["CMS"]["webbuild"] = "63_1dc60c6d6ea6e089c6893ab4e0541ee0/1792/";
  
    $_WEBSITE["CMS"]["build"] = "IplaceCMS V1.9"; // CMS build - Please, leave our credits!
  
    $_WEBSITE["CMS"]["language"] = "en"; // CMS Language
                                         // Default IplaceCMS languages:
                                         // nl - en - de - fr
                                         // If there the language is not found:
                                         // The CMS will give a error!
  
    $_WEBSITE["CMS"]["r63b"] = true; // Do you have a R63B server? (For groups, that stops the bug in the hotel game)
  
    /** HOTEL */
    $_WEBSITE["HTL"]["name"] = "TEST"; // Your hotel name
  
    $_WEBSITE["HTL"]["motto"] = "Test"; // Motto user (I <3 HotelName)
  
    $_WEBSITE["HTL"]["credits"] = "50"; // Motto user (I <3 HotelName)
  
    $_WEBSITE["HTL"]["owner"] = "TEST"; // Type here the owner(s) of you hotel!
  
    $_WEBSITE["HTL"]["year_since"] = "2014"; // Type here when your hotel starts (Year)
  
    $_WEBSITE["HTL"]["email"] = "[email protected]"; // Type here when your hotel starts (Year)
   
    /** CLIENT */
    $_WEBSITE['CLIENT']['server_ip'] = "127.0.0.1"; // IP (or website) linked to the server
  
    $_WEBSITE['CLIENT']['server_port'] = "30000"; // Port of the server
  
    $_WEBSITE['CLIENT']['external_vars'] = $_WEBSITE["CMS"]["url"] . '/game/external_variables.txt'; //URL to your external vars

    $_WEBSITE['CLIENT']['external_texts'] = $_WEBSITE["CMS"]["url"] . '/game/external_flash_texts.txt'; //URL to your external texts
  
    $_WEBSITE['CLIENT']['product_data'] = $_WEBSITE["CMS"]["url"] . '/game/productdata.txt'; //URL to your productdata
  
    $_WEBSITE['CLIENT']['furni_data'] = $_WEBSITE["CMS"]["url"] . '/game/furnidata_xml.xml'; //URL to your furnidata
  
    $_WEBSITE['CLIENT']['figure_data'] = $_WEBSITE["CMS"]["url"] . '/game/figuredata.xml'; //URL to your furnidata
  
    $_WEBSITE["CLIENT"]["base"] = $_WEBSITE["CMS"]["url"] . '/game';
  
    $_WEBSITE['CLIENT']['swf_folder'] = $_WEBSITE["CMS"]["url"] . '/game'; //URL to your SWF folder(does not end with a '/')
  
    $_WEBSITE['CLIENT']['swf_hotelswf'] = $_WEBSITE["CMS"]["url"] . '/game/Habbo.swf'; //URL to your SWF folder(does not end with a '/')
  
  
    /** SET DATABASE CONNECTION
        V1.8 update:
        MySQL moved to MySQLi
        (Still uses SQL, don't worry)
    */
    $conn = new mysqli($_WEBSITE["DB"]["host"], $_WEBSITE["DB"]["username"], $_WEBSITE["DB"]["password"], $_WEBSITE["DB"]["database"]);
     /** CHECK */
   
     $_WEBSITE["CMS"]["config.class"] = true;
?>

Emu Screen:
qwe3dddq.png
 

IPMB1

Member
Jan 1, 2013
249
20
config:

PHP:
<?php
    /** ************************************************\
     *  Iplace CMS                                       \
     *  @copyright 2014                                   \
     *  @since 2013                                        \
     *  @author Jasler.nl                                   \
     *  @link http://jasler.nl/iplace/                       \
     *  @deprecated OLDER VERSIONS LOWER THAN THIS ONE        \
     *  @name Iplace CMS                                       \
     *  @license FREE LIFE LICENCE                              \
     *  @tutorial http://jasler.nl/iplace/tutorial/             /
     *                                                         /
     *  DON'T CHANGE SOMETHING IF YOU DON'T                   /
     *  KNOW HOW IT WORKS!                                   /
     *                                                      /
     *  © 2013 Iplace CMS Project & Iplace Hotel           /
     *  ORIGINAL CMS MAKER: JASPER VRIENDS - JASLER.NL    |
     *                                                    |
     *          BUILD 18                                  |
     *          DATE: 09-05-2014                          |
     *          COPYRIGHTS: Jasper Vriends                |
     *          INFO: http://jasler.nl/iplace/            |
     *          UPDATE IC1.9                              |
     *                                                    |
     *       FIRST TIME? USE THE /install/ PLEASE!!!      |
     *                                                    |
     *****************************************************/
   
    /** DATABASE */
    $_WEBSITE["DB"]["host"] = "localhost"; // Database host (Like "localhost")
  
    $_WEBSITE["DB"]["username"] = "root"; // Database username (Like "root")
  
    $_WEBSITE["DB"]["password"] = ""; // Database password (Like "password" or empty)
  
    $_WEBSITE["DB"]["database"] = "db"; // Database name (Like "myhotelDB")
  
    /** CMS */
  
    $_WEBSITE["CMS"]["url"] = "http://127.0.0.1"; // Website addres with no / at the end
  
    $_WEBSITE["CMS"]["url2"] = "http://iplacehotel.nl";
  
    $_WEBSITE["CMS"]["psswd_hash"] = "xCg532%@%gdvf^5DGaa6&*rFTfg^FD4\(ugf*/"; //Password hash
  
    $_WEBSITE["CMS"]["maintenance"] = false; // Is your hotel in maintenance? Yes = true || No = false
  
    $_WEBSITE["CMS"]["isEnabledSentToHotelIsOfflinePage"] = true; // Is the CMS allowed to rederict the user when there is no Server connection to the ./hoteloffline page? - true = yes; false = no
  
    $_WEBSITE["CMS"]["onleyClientOpenIfServerConnected"] = false; // Set client closed if hotel is offline
  
    $_WEBSITE["CMS"]["layout"] = 1; // You can choose between 2 templates, 1 is Habbo normal template, 2 is other Habbo like template
  
    $_WEBSITE["CMS"]["activation_email"] = false; // Do you want that your users need to activate their email?
  
    $_WEBSITE["CMS"]["activation_auto_login"] = true; // If they activated they account is it okey to login them automaticly (Via link from the email (works once))?
  
    $_WEBSITE["CMS"]["activation_email_template"] = 2; // If there is an activation needed you have a new and a old email template :) 1 = new template; all other numbers is the old template
  
    $_WEBSITE["CMS"]["login_username"] = true; // Are the users enabled to login with thair username AND email?
  
    $_WEBSITE["CMS"]["webbuild"] = "63_1dc60c6d6ea6e089c6893ab4e0541ee0/2486"; // The webbuild if you need to use it (Like the client)
    //$_WEBSITE["CMS"]["webbuild"] = "63_1dc60c6d6ea6e089c6893ab4e0541ee0/1792/";
  
    $_WEBSITE["CMS"]["build"] = "IplaceCMS V1.9"; // CMS build - Please, leave our credits!
  
    $_WEBSITE["CMS"]["language"] = "en"; // CMS Language
                                         // Default IplaceCMS languages:
                                         // nl - en - de - fr
                                         // If there the language is not found:
                                         // The CMS will give a error!
  
    $_WEBSITE["CMS"]["r63b"] = true; // Do you have a R63B server? (For groups, that stops the bug in the hotel game)
  
    /** HOTEL */
    $_WEBSITE["HTL"]["name"] = "TEST"; // Your hotel name
  
    $_WEBSITE["HTL"]["motto"] = "Test"; // Motto user (I <3 HotelName)
  
    $_WEBSITE["HTL"]["credits"] = "50"; // Motto user (I <3 HotelName)
  
    $_WEBSITE["HTL"]["owner"] = "TEST"; // Type here the owner(s) of you hotel!
  
    $_WEBSITE["HTL"]["year_since"] = "2014"; // Type here when your hotel starts (Year)
  
    $_WEBSITE["HTL"]["email"] = "[email protected]"; // Type here when your hotel starts (Year)
   
    /** CLIENT */
    $_WEBSITE['CLIENT']['server_ip'] = "127.0.0.1"; // IP (or website) linked to the server
  
    $_WEBSITE['CLIENT']['server_port'] = "30000"; // Port of the server
  
    $_WEBSITE['CLIENT']['external_vars'] = $_WEBSITE["CMS"]["url"] . '/game/external_variables.txt'; //URL to your external vars

    $_WEBSITE['CLIENT']['external_texts'] = $_WEBSITE["CMS"]["url"] . '/game/external_flash_texts.txt'; //URL to your external texts
  
    $_WEBSITE['CLIENT']['product_data'] = $_WEBSITE["CMS"]["url"] . '/game/productdata.txt'; //URL to your productdata
  
    $_WEBSITE['CLIENT']['furni_data'] = $_WEBSITE["CMS"]["url"] . '/game/furnidata_xml.xml'; //URL to your furnidata
  
    $_WEBSITE['CLIENT']['figure_data'] = $_WEBSITE["CMS"]["url"] . '/game/figuredata.xml'; //URL to your furnidata
  
    $_WEBSITE["CLIENT"]["base"] = $_WEBSITE["CMS"]["url"] . '/game';
  
    $_WEBSITE['CLIENT']['swf_folder'] = $_WEBSITE["CMS"]["url"] . '/game'; //URL to your SWF folder(does not end with a '/')
  
    $_WEBSITE['CLIENT']['swf_hotelswf'] = $_WEBSITE["CMS"]["url"] . '/game/Habbo.swf'; //URL to your SWF folder(does not end with a '/')
  
  
    /** SET DATABASE CONNECTION
        V1.8 update:
        MySQL moved to MySQLi
        (Still uses SQL, don't worry)
    */
    $conn = new mysqli($_WEBSITE["DB"]["host"], $_WEBSITE["DB"]["username"], $_WEBSITE["DB"]["password"], $_WEBSITE["DB"]["database"]);
     /** CHECK */
   
     $_WEBSITE["CMS"]["config.class"] = true;
?>

Emu Screen:
qwe3dddq.png
replace "127.0.0.1" and "iplacehotel.nl" to "localhost" also post config.conf (emu)
and try to get in client
 

HDJoWa

New Member
Jun 14, 2014
11
0
config emu:
PHP:
## Phoenix 3.0 Cracked System Configuration File

## Licence Information
Otaku-Studios.username=JoWa
Otaku-Studios.password=nope<3

## MySQL Configuration
db.hostname=127.0.0.1
db.port=3306
db.username=root
db.password=
db.name=cms

## MySQL pooling setup (controls amount of connections)
db.pool.minsize=5
db.pool.maxsize=30

## Game TCP/IP Configuration
game.tcp.bindip=127.0.0.1
game.tcp.port=30000
game.tcp.conlimit=5000

## Client configuration
client.ping.enabled=1
client.ping.interval=30000

## MUS TCP/IP Configuration
mus.tcp.bindip=127.0.0.1
mus.tcp.port=30001
mus.tcp.allowedaddr=127.0.0.1

## Console Configuration
emu.messages.connections=1
emu.messages.roommgr=1
emu.messages.startup=0
 

jasler

Member
Aug 26, 2011
60
13
This looks very nice, I will be sure to try this out!
config emu:
PHP:
## Phoenix 3.0 Cracked System Configuration File

## Licence Information
*****.username=JoWa
*****.password=nope<3

## MySQL Configuration
db.hostname=127.0.0.1
db.port=3306
db.username=root
db.password=
db.name=cms

## MySQL pooling setup (controls amount of connections)
db.pool.minsize=5
db.pool.maxsize=30

## Game TCP/IP Configuration
game.tcp.bindip=127.0.0.1
game.tcp.port=30000
game.tcp.conlimit=5000

## Client configuration
client.ping.enabled=1
client.ping.interval=30000

## MUS TCP/IP Configuration
mus.tcp.bindip=127.0.0.1
mus.tcp.port=30001
mus.tcp.allowedaddr=127.0.0.1

## Console Configuration
emu.messages.connections=1
emu.messages.roommgr=1
emu.messages.startup=0

Set "127.0.0.1" to localhost. But okey. Your client doesn't connect to your emulator. You have to check if the poorts and hosts are good. Don't forget you have to add some firewall rules, and portforward (if you don't have a VPS). Then check (if you are on a other computer than that one where the server is), the SERVER IP in the client isn't localhost", but the IP of that computer/network.

Sent via Tapatalk on Mobile phone :D :D
 

IPMB1

Member
Jan 1, 2013
249
20
don't work :mad:
ON TOPIC: In db.hostname(Emu Cofig)... change 127.0.0.1 to localhost. In Server ip settings (cms config/config.class) change the server ip settings to 127.0.0.1.

OFF TOPIC: If you dont know how to set up an hotel PROPERLY, just dont make one.
 

Calicrook

New Member
Jul 20, 2014
5
1
Anybody else having issues while using IIS? All I did was put the files in the public/ww and now IIS is showing an error serve 500? anybody know a fix?
 

Laven3XP

New Member
Sep 20, 2014
1
0
If I want to register get the following error :
Er is iets mis gegaan! De registratie kon niet worden afgerond! Sorry! Vanwegen een onbekende fout heeft het script de registratie afgebroken... Probeer opnieuw te verzenden.

De server gaf aan:

PLS Need Help
 

jasler

Member
Aug 26, 2011
60
13
If I want to register get the following error :
Er is iets mis gegaan! De registratie kon niet worden afgerond! Sorry! Vanwegen een onbekende fout heeft het script de registratie afgebroken... Probeer opnieuw te verzenden.

De server gaf aan:

PLS Need Help

Do you use IIS? Then I am afraid that you have to download XAMPP to only use the Database Server. My guess is that IIS something has that the CMS does not work...

take it i can just stick this in wwwroot on it own then

What do you mean? I cannot understand you?

P.s. Sorry for this late reactions. I almost never look at DevBest anymore...

Sent via Tapatalk on Mobile phone :D :D
 

clienta

New Member
Oct 26, 2011
28
0
Nope, stuck on "A moment please, your account is getting created..."
Emulator: Mercury (R63B)
 

jasler

Member
Aug 26, 2011
60
13
Nope, stuck on "A moment please, your account is getting created..."
Emulator: Mercury (R63B)
Check the url of the CMS. Maybe the problem is tha that you are looking at localhost but the CMS has a URL to egg myhotel.com? The Ajax request cannot handle requests to other (sub)domains. This is maybe why...

I have to go to school now, I'll answer again when I am at home!

- Jasper
 

EngeldesTodes

Deutsch Techno-Freak WIR SIND EIN
Feb 21, 2011
1,070
76
Do you use IIS? Then I am afraid that you have to download XAMPP to only use the Database Server. My guess is that IIS something has that the CMS does not work...



What do you mean? I cannot understand you?

P.s. Sorry for this late reactions. I almost never look at DevBest anymore...

Sent via Tapatalk on Mobile phone :D :D
what i ment is can i stick this cms without having revcms as a defult folder to install your cms or do i need a base cms to install this cms
 

jasler

Member
Aug 26, 2011
60
13
what i ment is can i stick this cms without having revcms as a defult folder to install your cms or do i need a base cms to install this cms

Nope, this is a oen based CMS, so you just have to import it in your website derectory :)

Sent via Tapatalk on Mobile phone :D :D
 
Status
Not open for further replies.

Users who are viewing this thread

Top