Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Tutorials
[TUT] How to make a R63 Habbo Retro
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="keiller" data-source="post: 117316" data-attributes="member: 18142"><p style="text-align: center"><img src="http://img535.imageshack.us/img535/8825/4ffb1c4cec8d837b6500002.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /><img src="http://habbox.com/text/6/Tutorial+one%20" alt="" class="fr-fic fr-dii fr-draggable " style="" /><img src="http://img535.imageshack.us/img535/8825/4ffb1c4cec8d837b6500002.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /></p><p></p><p>Hey,</p><p>Today we are going to create a Habbo Retro using FrostCMS</p><p> </p><p><span style="color: #0000ff"><u><strong>Downloads</strong></u></span></p><p><span style="color: #000000">FrostCMS Beta 1.0: <a href="https://www.rapidshare.com/#!download|148|3244652674|frost.zip|25660" target="_blank">Download</a></span></p><p>XAMPP: <a href="http://www.apachefriends.org/en/xampp-windows.html" target="_blank">Download</a></p><p>MYSQL: <a href="http://dev.mysql.com/downloads/connector/odbc/3.51.html" target="_blank">Download </a></p><p>Winrar: <a href="http://www.rarlab.com/download.htm" target="_blank">Download</a></p><p> </p><p>#1 - Buy a phoenix license or use a cracked version (recommend buying, if you are going to use a cracked version I will not supply links/sites to download one, so please do not ask)</p><p> </p><p>#2 - We will start of by setting up XAMPP, download and install it then open up the Control Panel. Make sure you have Apache and MYSQL running, with both of the SVC boxes ticked. Nothing else apart from those two.</p><p> </p><p>#3 - Go to</p><p style="text-align: center"><span style="font-family: 'Verdana'"><span style="color: #333333">C:\xampp\htdocs</span></span></p><p>and deleting everything in that folder. Once you have done that, either search<a href="http://localhost/" target="_blank">http://localhost/</a> or click the link. Select your language, then find a tab named "Security" set up a password that you will easily remember, but not to easy that it could get hacked.</p><p> </p><p>#4 - Go to your desktop and make a folder named 'Phoenix' or something along those lines, and extract your Phoenix files using Winrar. Now go to <a href="http://localhost/phpmyadmin/" target="_blank">http://localhost/phpmyadmin/</a> and put the username as "root" without the quotes and the password as the one you seat earlier.</p><p> </p><p>#5 - Once you are on click on <img src="http://i.imgur.com/necnx.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /> and then <img src="http://i.imgur.com/A7Nl9.png" alt="" class="fr-fic fr-dii fr-draggable " style="" />[/code]</p><p> </p><p>Once the database is created, go on it and click on "Import", find your .sql file which should be located in the "Phoenix" folder on your desktop.</p><p style="text-align: center"><span style="font-family: 'Verdana'"><span style="color: #333333">Now you will want to configure your server so go to the config file in the phoenix folder and edit it like so</span></span></p><p></p><p>[CODE]**************.username=Your otaku Username</p><p>**************.password=your otaku password</p><p> </p><p>## MySQL Configuration</p><p>db.hostname=localhost</p><p>db.port=3306</p><p>db.username=root</p><p>db.password=your xampp password</p><p>db.name=your database name</p><p> </p><p>## MySQL pooling setup (controls amount of connections)</p><p>db.pool.minsize=5</p><p>db.pool.maxsize=100</p><p> </p><p>## Game TCP/IP Configuration</p><p>game.tcp.bindip=127.0.0.1</p><p>game.tcp.port=30000</p><p>game.tcp.conlimit=5000</p><p> </p><p>## Client configuration</p><p>client.ping.enabled=1</p><p>client.ping.interval=30000</p><p> </p><p>## MUS TCP/IP Configuration</p><p>mus.tcp.bindip=127.0.0.1</p><p>mus.tcp.port=30001</p><p>mus.tcp.allowedaddr=127.0.0.1</p><p> </p><p>## Console Configuration</p><p>emu.messages.connections=1</p><p>emu.messages.roommgr=1[/CODE]</p><p> </p><p>Now test your server to make sure it works, if not re-look over the steps.</p><p> </p><p>#6 -</p><p style="text-align: center"><span style="font-family: 'Verdana'"><span style="color: #333333">Ok so now we can move on to the CMS. So download FrostCMS and extract it to C:\xampp\htdocs.</span></span></p><p></p><p style="text-align: center"><span style="font-family: 'Verdana'"><span style="color: #333333">Now go to your htdocs and go to frost_global and then open config and edit it like so</span></span></p><p></p><p>[CODE]<?php</p><p>## FrostCMS 1.0 ##</p><p>## Made by AmirZ ##</p><p>## Thanks for using! ##</p><p> </p><p> </p><p>#error_reporting(0); //Remove the "#" for use in public</p><p> </p><p>$dbhost = "localhost";</p><p>$dbuser = "root";</p><p>$dbpass = "your xampp password";</p><p>$database = "Name of your database";</p><p> </p><p>$sitename = "Hablow";</p><p>$regmotto = "Whats up?";</p><p> </p><p>$gameport = "30000";</p><p>$musport = "30001";</p><p> </p><p>$swf_base = "http://para-hotel.com/client/r63/";</p><p>$swf_vars = "http://para-hotel.com/client/r63/external_variables.txt";</p><p>?>[/code]</p><p> </p><p>#7 - Now go to client.php delete it all and replace it with the following:</p><p> </p><p>[CODE]<?php if(!isset($_SESSION['username'])){ header("Location: ../"); exit; }</p><p>setcookie("last_online", $user->me('last_online'), time() + 604800, "/"); //To make sure you can still logout because the emulator updated the last_online</p><p>?></p><p><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"</p><p> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"></p><p><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"></p><p><head></p><p> <meta http-equiv="content-type" content="text/html; charset=utf-8" /></p><p> <title>{sitename} Hotel: Client</title></p><p> </p><p><script type="text/javascript"></p><p>var andSoItBegins = (new Date()).getTime();</p><p></script></p><p><link rel="stylesheet" href="{site}/web-gallery/static/styles/common.css" type="text/css" /></p><p> </p><p><script src="{site}/web-gallery/static/js/libs2.js" type="text/javascript"></script></p><p><script src="{site}/web-gallery/static/js/visual.js" type="text/javascript"></script></p><p><script src="{site}/web-gallery/static/js/libs.js" type="text/javascript"></script></p><p><script src="{site}/web-gallery/static/js/common.js" type="text/javascript"></script></p><p> </p><p> <script type="text/javascript"></p><p> document.habboLoggedIn = true;</p><p> var habboName = "{username}";</p><p> var habboReqPath = "{site}";</p><p> var habboStaticFilePath = "{site}/web-gallery";</p><p> var habboImagerUrl = "http://www.habbo.com/habbo-imaging/";</p><p> var habboPartner = "";</p><p> var habboDefaultClientPopupUrl = "{site}/client";</p><p> window.name = "ClientWndw";</p><p> if (typeof HabboClient != "undefined") { HabboClient.windowName = "ClientWndw"; }</p><p> </script></p><p> </p><p><link rel="stylesheet" href="{site}/web-gallery/static/styles/habboflashclient.css" type="text/css" /></p><p><script src="{site}/web-gallery/static/js/habboflashclient.js" type="text/javascript"></script></p><p> </p><p><script type="text/javascript"></p><p> FlashExternalInterface.loginLogEnabled = false;</p><p> FlashExternalInterface.logLoginStep("web.view.start");</p><p> </p><p> if (top == self) {</p><p> FlashHabboClient.cacheCheck();</p><p> }</p><p> var flashvars = {</p><p> "client.allow.cross.domain" : "1",</p><p> "client.notify.cross.domain" : "1",</p><p> "connection.info.host" : "<?php echo $_SERVER['SERVER_NAME']; ?>",</p><p> "connection.info.port" : "{gameport}",</p><p> "site.url" : "{swfsite}",</p><p> "url.prefix" : "{swfsite}",</p><p> "client.reload.url" : "{site}/client",</p><p> "client.fatal.error.url" : "{site}/client",</p><p> "client.connection.failed.url" : "{site}/client",</p><p> "external.variables.txt" : "{swfvars}",</p><p> "use.sso.ticket" : "1",</p><p> "sso.ticket" : "<?php echo $user->sso(); ?><?php #echo md5($ticket); ?>",</p><p> "processlog.enabled" : "0",</p><p> "account_id" : "{id}",</p><p> "client.starting" : "{sitename} is loading, please wait.",</p><p> "flash.client.url" : "{swfbase}/",</p><p> "user.hash" : "31385693ae558a03d28fc720be6b41cb1ccfec02",</p><p> "has.identity" : "0",</p><p> "flash.client.origin" : "popup",</p><p> "logout.disconnect.url" : "{site}/client",</p><p> "logout.url" : "{site}/account/logout?token={token}"</p><p> };</p><p> var params = {</p><p> "base" : "{swfbase}/",</p><p> "allowScriptAccess" : "always",</p><p> "menu" : "false"</p><p> };</p><p> </p><p> if (!(HabbletLoader.needsFlashKbWorkaround())) {</p><p> params["wmode"] = "opaque";</p><p> }</p><p> </p><p> FlashExternalInterface.signoutUrl = "{site}/account/logout?token={token}";</p><p> </p><p> var clientUrl = "{swfbase}/habbo.swf";</p><p> </p><p> swfobject.embedSWF(clientUrl, "flash-container", "100%", "100%", "10.0.0", "{site}/web-gallery/flash/expressInstall.swf", flashvars, params);</p><p> </p><p> window.onbeforeunload = unloading;</p><p> function unloading() {</p><p> var clientObject;</p><p> if (navigator.appName.indexOf("Microsoft") != -1) {</p><p> clientObject = window["flash-container"];</p><p> } else {</p><p> clientObject = document["flash-container"];</p><p> }</p><p> try {</p><p> clientObject.unloading();</p><p> } catch (e) {}</p><p> }</p><p></script></p><p> </p><p><!--[if IE 8]></p><p><link rel="stylesheet" href="{site}/web-gallery/static/styles/ie8.css" type="text/css" /></p><p><![endif]--></p><p> </p><p><!--[if lt IE 8]></p><p><link rel="stylesheet" href="{site}/web-gallery/static/styles/ie.css" type="text/css" /></p><p><![endif]--></p><p><!--[if lt IE 7]></p><p><link rel="stylesheet" href="{site}/web-gallery/static/styles/ie6.css" type="text/css" /></p><p><script src="{site}/web-gallery/static/js/pngfix.js" type="text/javascript"></script></p><p><script type="text/javascript"></p><p>try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {}</p><p></script></p><p> </p><p><style type="text/css"></p><p>body { behavior: url(/js/csshover.htc); }</p><p></style></p><p><![endif]--></p><p> </p><p></head></p><p> </p><p><body id="client" class="flashclient"></p><p> </p><p><div id="overlay"></div></p><p><div id="overlay"></div></p><p><div id="client-ui" ></p><p> <div id="flash-wrapper"></p><p> <div id="flash-container"></p><p> <div id="content" style="width: 400px; margin: 20px auto 0 auto; display: none"></p><p> <div class="cbb clearfix"></p><p> <h2 class="title">Please install Adobe Flash Player.</h2></p><p> <div class="box-content"></p><p> <p>You can install and download Adobe Flash Player here: <a href="http://get.adobe.com/flashplayer/"></p><p> Install flash player</a>. More instructions for installation can be</p><p> found here: <a href="http://www.adobe.com/products/flashplayer/productinfo/instructions/"></p><p> More information</a></p></p><p> <p><a href="http://www.adobe.com/go/getflashplayer"><img src="{site}/web-gallery/images/client/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p></p><p> </div></p><p> </div></p><p> </div></p><p> <script type="text/javascript"></p><p> $('content').show();</p><p> </script></p><p> <noscript></p><p> <div style="width: 400px; margin: 20px auto 0 auto; text-align: center"></p><p> <p>If you are not automatically redirected, please <a href="/client/nojs">click here</a></p></p><p> </div></p><p> </noscript></p><p> </div></p><p> </p><p> </div></p><p> <div id="content" class="client-content"></div></p><p></div></p><p> </p><p></body></p><p></html>[/CODE]</p><p> </p><p>NOTE: Also, don't forget to edit the following in your PHP.ini, and delete the webdav folder;</p><p>[CODE]PHP Safe Mode = On[/CODE]</p><p> </p><p><strong>You have now made a R63 retro</strong>! I am aware the SWFS are from paradise hotel, but in my last thread people had problems with making there own SWFS, so go on google for a tutorial.</p><p> </p><p style="text-align: center"><span style="color: #ff0000"><strong>I WILL OFFER FULL SUPPORT VIA JOIN.ME IF YOU GET STUCK - PM YOUR DETAILS</strong></span></p> <p style="text-align: center"></p> <p style="text-align: center"><em>Download Join.me at <a href="http://join.me/" target="_blank">http://join.me/</a> at download "Basic" then pm the URL to me, to find out why we are using join.me look at the update log below.</em></p> <p style="text-align: center"></p> <p style="text-align: center"></p> <p style="text-align: left">Update log;</p> <p style="text-align: left"></p><p>[PHP]#01/07/2012 -</p><p>Created Tutorial</p><p>#04/07/2012 -</p><p>Giving free help via teamviewer</p><p>#07/07/2012 -</p><p>Changed FrostCMS download; was FrostCMS Beta 0.1 - now FrostCMS Beta 1.0</p><p>#07/07/2012 -</p><p>Changed downloading site; was Mediafire - now Rapidshare</p><p>#07/07/2012 -</p><p>Added README.txt file, delete it after you have read it</p><p>#08/07/2012 -</p><p>Updated the support section just above, Teamviewer uses port 80, so we now need to use join.me</p><p>#10/07/2012 -</p><p>Removed the cracked phoenix in the 'Information' folder, I never realised this was implanted when I downloaded it</p><p>#10/07/2012 -</p><p>Changed FrostCMS download; DevBest does not support cracked versions, so I removed and re-uploaded</p><p>#18/07/2012 -</p><p>Now supporting hotels that would like to use IIS instead of XAMPP, must have it pre-installed though</p><p>#21/07/2012 -</p><p>Changed update log to PHP version as it looked cooler[/PHP]</p><p style="text-align: left"></p> <p style="text-align: left"></p></blockquote><p></p>
[QUOTE="keiller, post: 117316, member: 18142"] [CENTER][IMG]http://img535.imageshack.us/img535/8825/4ffb1c4cec8d837b6500002.png[/IMG][IMG]http://habbox.com/text/6/Tutorial+one%20[/IMG][IMG]http://img535.imageshack.us/img535/8825/4ffb1c4cec8d837b6500002.png[/IMG][/CENTER] Hey, Today we are going to create a Habbo Retro using FrostCMS [COLOR=#0000ff][U][B]Downloads[/B][/U][/COLOR] [COLOR=#000000]FrostCMS Beta 1.0: [URL='https://www.rapidshare.com/#!download|148|3244652674|frost.zip|25660']Download[/URL][/COLOR] XAMPP: [URL='http://www.apachefriends.org/en/xampp-windows.html']Download[/URL] MYSQL: [URL='http://dev.mysql.com/downloads/connector/odbc/3.51.html']Download [/URL] Winrar: [URL='http://www.rarlab.com/download.htm']Download[/URL] #1 - Buy a phoenix license or use a cracked version (recommend buying, if you are going to use a cracked version I will not supply links/sites to download one, so please do not ask) #2 - We will start of by setting up XAMPP, download and install it then open up the Control Panel. Make sure you have Apache and MYSQL running, with both of the SVC boxes ticked. Nothing else apart from those two. #3 - Go to [CENTER][FONT=Verdana][COLOR=#333333]C:\xampp\htdocs[/COLOR][/FONT][/CENTER] and deleting everything in that folder. Once you have done that, either search[URL]http://localhost/[/URL] or click the link. Select your language, then find a tab named "Security" set up a password that you will easily remember, but not to easy that it could get hacked. #4 - Go to your desktop and make a folder named 'Phoenix' or something along those lines, and extract your Phoenix files using Winrar. Now go to [URL]http://localhost/phpmyadmin/[/URL] and put the username as "root" without the quotes and the password as the one you seat earlier. #5 - Once you are on click on [IMG]http://i.imgur.com/necnx.png[/IMG] and then [IMG]http://i.imgur.com/A7Nl9.png[/IMG][/code] Once the database is created, go on it and click on "Import", find your .sql file which should be located in the "Phoenix" folder on your desktop. [CENTER][FONT=Verdana][COLOR=#333333]Now you will want to configure your server so go to the config file in the phoenix folder and edit it like so[/COLOR][/FONT][/CENTER] [CODE]**************.username=Your otaku Username **************.password=your otaku password ## MySQL Configuration db.hostname=localhost db.port=3306 db.username=root db.password=your xampp password db.name=your database name ## MySQL pooling setup (controls amount of connections) db.pool.minsize=5 db.pool.maxsize=100 ## 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[/CODE] Now test your server to make sure it works, if not re-look over the steps. #6 - [CENTER][FONT=Verdana][COLOR=#333333]Ok so now we can move on to the CMS. So download FrostCMS and extract it to C:\xampp\htdocs.[/COLOR][/FONT][/CENTER] [CENTER][FONT=Verdana][COLOR=#333333]Now go to your htdocs and go to frost_global and then open config and edit it like so[/COLOR][/FONT][/CENTER] [CODE]<?php ## FrostCMS 1.0 ## ## Made by AmirZ ## ## Thanks for using! ## #error_reporting(0); //Remove the "#" for use in public $dbhost = "localhost"; $dbuser = "root"; $dbpass = "your xampp password"; $database = "Name of your database"; $sitename = "Hablow"; $regmotto = "Whats up?"; $gameport = "30000"; $musport = "30001"; $swf_base = "http://para-hotel.com/client/r63/"; $swf_vars = "http://para-hotel.com/client/r63/external_variables.txt"; ?>[/code] #7 - Now go to client.php delete it all and replace it with the following: [CODE]<?php if(!isset($_SESSION['username'])){ header("Location: ../"); exit; } setcookie("last_online", $user->me('last_online'), time() + 604800, "/"); //To make sure you can still logout because the emulator updated the last_online ?> <!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="content-type" content="text/html; charset=utf-8" /> <title>{sitename} Hotel: Client</title> <script type="text/javascript"> var andSoItBegins = (new Date()).getTime(); </script> <link rel="stylesheet" href="{site}/web-gallery/static/styles/common.css" type="text/css" /> <script src="{site}/web-gallery/static/js/libs2.js" type="text/javascript"></script> <script src="{site}/web-gallery/static/js/visual.js" type="text/javascript"></script> <script src="{site}/web-gallery/static/js/libs.js" type="text/javascript"></script> <script src="{site}/web-gallery/static/js/common.js" type="text/javascript"></script> <script type="text/javascript"> document.habboLoggedIn = true; var habboName = "{username}"; var habboReqPath = "{site}"; var habboStaticFilePath = "{site}/web-gallery"; var habboImagerUrl = "http://www.habbo.com/habbo-imaging/"; var habboPartner = ""; var habboDefaultClientPopupUrl = "{site}/client"; window.name = "ClientWndw"; if (typeof HabboClient != "undefined") { HabboClient.windowName = "ClientWndw"; } </script> <link rel="stylesheet" href="{site}/web-gallery/static/styles/habboflashclient.css" type="text/css" /> <script src="{site}/web-gallery/static/js/habboflashclient.js" type="text/javascript"></script> <script type="text/javascript"> FlashExternalInterface.loginLogEnabled = false; FlashExternalInterface.logLoginStep("web.view.start"); if (top == self) { FlashHabboClient.cacheCheck(); } var flashvars = { "client.allow.cross.domain" : "1", "client.notify.cross.domain" : "1", "connection.info.host" : "<?php echo $_SERVER['SERVER_NAME']; ?>", "connection.info.port" : "{gameport}", "site.url" : "{swfsite}", "url.prefix" : "{swfsite}", "client.reload.url" : "{site}/client", "client.fatal.error.url" : "{site}/client", "client.connection.failed.url" : "{site}/client", "external.variables.txt" : "{swfvars}", "use.sso.ticket" : "1", "sso.ticket" : "<?php echo $user->sso(); ?><?php #echo md5($ticket); ?>", "processlog.enabled" : "0", "account_id" : "{id}", "client.starting" : "{sitename} is loading, please wait.", "flash.client.url" : "{swfbase}/", "user.hash" : "31385693ae558a03d28fc720be6b41cb1ccfec02", "has.identity" : "0", "flash.client.origin" : "popup", "logout.disconnect.url" : "{site}/client", "logout.url" : "{site}/account/logout?token={token}" }; var params = { "base" : "{swfbase}/", "allowScriptAccess" : "always", "menu" : "false" }; if (!(HabbletLoader.needsFlashKbWorkaround())) { params["wmode"] = "opaque"; } FlashExternalInterface.signoutUrl = "{site}/account/logout?token={token}"; var clientUrl = "{swfbase}/habbo.swf"; swfobject.embedSWF(clientUrl, "flash-container", "100%", "100%", "10.0.0", "{site}/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> <!--[if IE 8]> <link rel="stylesheet" href="{site}/web-gallery/static/styles/ie8.css" type="text/css" /> <![endif]--> <!--[if lt IE 8]> <link rel="stylesheet" href="{site}/web-gallery/static/styles/ie.css" type="text/css" /> <![endif]--> <!--[if lt IE 7]> <link rel="stylesheet" href="{site}/web-gallery/static/styles/ie6.css" type="text/css" /> <script src="{site}/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]--> </head> <body id="client" class="flashclient"> <div id="overlay"></div> <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 install Adobe Flash Player.</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="{site}/web-gallery/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> </body> </html>[/CODE] NOTE: Also, don't forget to edit the following in your PHP.ini, and delete the webdav folder; [CODE]PHP Safe Mode = On[/CODE] [B]You have now made a R63 retro[/B]! I am aware the SWFS are from paradise hotel, but in my last thread people had problems with making there own SWFS, so go on google for a tutorial. [CENTER][COLOR=#ff0000][B]I WILL OFFER FULL SUPPORT VIA JOIN.ME IF YOU GET STUCK - PM YOUR DETAILS[/B][/COLOR][/CENTER] [CENTER] [/CENTER] [CENTER][I]Download Join.me at [URL]http://join.me/[/URL] at download "Basic" then pm the URL to me, to find out why we are using join.me look at the update log below.[/I][/CENTER] [CENTER] [/CENTER] [CENTER] [/CENTER] [LEFT]Update log;[/LEFT] [LEFT] [/LEFT] [PHP]#01/07/2012 - Created Tutorial #04/07/2012 - Giving free help via teamviewer #07/07/2012 - Changed FrostCMS download; was FrostCMS Beta 0.1 - now FrostCMS Beta 1.0 #07/07/2012 - Changed downloading site; was Mediafire - now Rapidshare #07/07/2012 - Added README.txt file, delete it after you have read it #08/07/2012 - Updated the support section just above, Teamviewer uses port 80, so we now need to use join.me #10/07/2012 - Removed the cracked phoenix in the 'Information' folder, I never realised this was implanted when I downloaded it #10/07/2012 - Changed FrostCMS download; DevBest does not support cracked versions, so I removed and re-uploaded #18/07/2012 - Now supporting hotels that would like to use IIS instead of XAMPP, must have it pre-installed though #21/07/2012 - Changed update log to PHP version as it looked cooler[/PHP] [LEFT] [/LEFT] [LEFT] [/LEFT] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Tutorials
[TUT] How to make a R63 Habbo Retro
Top