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 RevCMS Habbo retro [TUT]
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="helpmeimanewb" data-source="post: 146505" data-attributes="member: 20148"><p><span style="font-family: 'arial'"><span style="font-size: 15px">Hello Guys, welcome to my first tutorial on devbest.</span></span></p><p><span style="font-size: 15px"><span style="font-family: 'arial'">We will be creating a RevCMS hotel so hope it turns out well Enjoy!</span></span></p><p> </p><p><span style="font-size: 22px"><span style="font-family: 'arial black'">Downloads:</span></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Xampp 1.7.3 -</span></span><span style="font-size: 18px"><a href="http://www.oldapps.com/xampp.php?old_xampp=46" target="_blank">http://www.oldapps.com/xampp.php?old_xampp=46</a></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">RevCMS - </span><a href="http://www.mediafire.com/?m9pa4biy89ac4da" target="_blank">http://www.mediafire.com/?m9pa4biy89ac4da</a></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Phoenix Emulator - DevBest does not support cracked Phoenix Google it or (Recommened) Buy Phoenix License.</span></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Kidrambodubsteps SWF'S - </span></span><span style="font-size: 18px"><a href="http://www.mediafire.com/?cstupi0ay5s2vtv" target="_blank">http://www.mediafire.com/?cstupi0ay5s2vtv</a></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Notepad++ - </span><a href="http://notepad-plus-plus.org/download/v6.1.8.html" target="_blank">http://notepad-plus-plus.org/download/v6.1.8.html</a></span></p><p> </p><p><span style="font-size: 22px"><span style="font-family: 'arial black'">How to create the hotel:</span></span></p><p> </p><p><span style="font-size: 18px"><span style="font-family: 'arial'">First of all we need to download Xampp, Download Xampp from the link above or your own link, Once you have done this Open XAMPP control panel and run apache and MySQL</span></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Now go to <a href="http://localhost/security/xamppsecurity" target="_blank">http://localhost/security/xamppsecurity</a> and set your password (You must remember this Passoword)</span></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">after you have set your password go to <a href="http://localhost/phpmyadmin" target="_blank">http://localhost/phpmyadmin</a> and log in (Your password is the password you setup 1 step ago)</span></span></p><p> </p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Now create A database and call it 'del_revcms' once you have created this database</span></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Extract Your phoenix Emulator to your desktop and return to <a href="http://localhost/phpmyadmin" target="_blank">http://localhost/phpmyadmin</a></span></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">now once your on your database Click the 'Import' Tab and Choose file. </span></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Locate your Pheonix Emulator file and Open the 3.7.1 SQL </span></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Now click go, If you cannot see the tables reload the page.</span></span></p><p> </p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Extract your RevCMS to c:/xampp/htdocs/-></span></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Once this is complete go to app/manangement and edit Config with Notepad++ along the lines of this</span></span></p><p>[PHP]<?php</p><p>if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file.'); }</p><p>#Please fill this all out.</p><p> </p><p>#NOTE: To set up TheHabbos.ORG's API go to wwwroot/mysite/thehabbos_api for IIS, OR, htdocs/thehabbos_api for XAMPP and others.</p><p> </p><p>/*</p><p>*</p><p>* MySQL management</p><p>*</p><p>*/</p><p> </p><p>$_CONFIG['mysql']['connection_type'] = 'pconnect'; //Type of connection: It must be connect, or pconnect: if you want a persistent connection.</p><p> </p><p>$_CONFIG['mysql']['hostname'] = 'localhost'; //MySQL host</p><p> </p><p>$_CONFIG['mysql']['username'] = 'root'; //MySQL username</p><p> </p><p>$_CONFIG['mysql']['password'] = 'password you created earlier'; //MySQL password</p><p> </p><p>$_CONFIG['mysql']['database'] = 'del_revcms'; //MySQL database</p><p> </p><p>$_CONFIG['mysql']['port'] = '3306'; //MySQL's port</p><p> </p><p>/*</p><p>*</p><p>* Hotel management - All URLs do not end with an "/"</p><p>*</p><p>*/</p><p> </p><p>$_CONFIG['hotel']['server_ip'] = 'Hamachi, VPS, or dedi IP'; //IP of VPS/DEDI/etc</p><p> </p><p>$_CONFIG['hotel']['url'] = 'http:// Hamachi, VPS, or dedi IP '; //Does not end with a "/"</p><p> </p><p>$_CONFIG['hotel']['name'] = 'Hotel name'; // Hotel's name</p><p> </p><p>$_CONFIG['hotel']['desc'] = 'Where the Magic Begins!'; //Hotel's description</p><p> </p><p>$_CONFIG['hotel']['email'] = 'helpme@hotmail.co.uk'; //Where the help queries from users are emailed to.@Priv skin</p><p> </p><p>$_CONFIG['hotel']['in_maint'] = false; //False if hotel is NOT in maintenance. True if hotel IS in maintenance</p><p> </p><p>$_CONFIG['hotel']['motto'] = 'Motto users will register with' ; //Default motto users will register with.</p><p> </p><p>$_CONFIG['hotel']['credits'] = 5000; //Default number of credits users will register with.</p><p> </p><p>$_CONFIG['hotel']['pixels'] = 10000; //Default number of pixels users will register with.</p><p> </p><p>$_CONFIG['hotel']['figure'] = '-'; //Default figure users will register with.</p><p> </p><p>$_CONFIG['hotel']['web_build'] = '63_1dc60c6d6ea6e089c6893ab4e0541ee0/1285'; //Web_Build</p><p> </p><p>$_CONFIG['hotel']['external_vars'] = 'http:// Hamachi, VPS, or dedi IP /r63/external_variables.txt'; //URL to your external vars</p><p> </p><p>$_CONFIG['hotel']['external_texts'] = 'http:// Hamachi, VPS, or dedi IP /r63/external_flash_texts.txt'; //URL to your external texts</p><p> </p><p>$_CONFIG['hotel']['product_data'] = 'http:// Hamachi, VPS, or dedi IP /r63/productdata.txt'; //URL to your productdata</p><p> </p><p>$_CONFIG['hotel']['furni_data'] = 'http:// Hamachi, VPS, or dedi IP /r63/furnidata.txt'; //URL to your furnidata</p><p> </p><p>$_CONFIG['hotel']['swf_folder'] = 'http:// Hamachi, VPS, or dedi IP /r63/'; //URL to your SWF folder(does not end with a '/')</p><p> </p><p>/*</p><p>*</p><p>* Templating management - Pick one of our default styles or make yours by following our examples!</p><p>*</p><p>*/</p><p> </p><p>#RevCMS has 2 default styles, 'Mango' by dannyy94 and 'Priv' by joopie - Others styles are to come, such as RastaLulz's ProCMS style and Nominal's PhoenixCMS 4.0 style.</p><p> </p><p>$_CONFIG['template']['style'] = 'Habbo';</p><p> </p><p>/*</p><p>*</p><p>* Other topsites.. thing</p><p>*</p><p>*/</p><p> </p><p>$_CONFIG['thehabbos']['username'] = 'Kryptos';</p><p>$_CONFIG['retro_top']['user'] = 'Kryptos';</p><p> </p><p>/*</p><p>*</p><p>* Recaptcha management - Fill the information below if you have one, else leave it like that and don't worry, be happy.</p><p>*</p><p>*/</p><p> </p><p>$_CONFIG['recaptcha']['priv_key'] = '6LcZ58USAAAAABSV5px9XZlzvIPaBOGA6rQP2G43';</p><p>$_CONFIG['recaptcha']['pub_key'] = '6LcZ58USAAAAAAQ6kquItHl4JuTBWs-5cSKzh6DD';</p><p> </p><p> </p><p>/*</p><p>*</p><p>* Social Networking stuff</p><p>*</p><p>*/</p><p> </p><p>$_CONFIG['social']['twitter'] = 'TwitterAccount'; //Hotel's Twitter account</p><p> </p><p>$_CONFIG['social']['facebook'] = 'FacebookAccount'; //Hotel's Facebook account</p><p> </p><p>?>[/PHP]</p><p> </p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Once you have done this Save and go to <a href="http://localhost" target="_blank">http://localhost</a> and if your index loads register </span></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Now Locate your Phoenix Emulator file and edit config.conf with notepad++ to something along the lines of this</span></span></p><p>[PHP]## Phoenix 3.0 System Configuration File</p><p> </p><p>## Licence Information</p><p>Otaku-Studios.username=JayPwnsAll</p><p>Otaku-Studios.password=Rulez</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=password you set earlier</p><p>db.name=del_revcms</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=hamachi, VPS, or dedi ip</p><p>game.tcp.port=30000</p><p>game.tcp.conli</p><p>mit=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=hamachi, VPS, or dedi ip</p><p>mus.tcp.port=30001</p><p>mus.tcp.allowedaddr=hamachi, VPS, or dedi ip</p><p> </p><p>## Console Configuration</p><p>emu.messages.connections=1</p><p>emu.messages.roommgr=1</p><p>[/PHP]</p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Save and run your emulator if it loads carry on, if not re read steps.</span></span></p><p> </p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Now for your client to work you will need to edit your swfs so,</span></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Extract your swfs you downloaded 'r63' to c:/xampp/htdocs/-> </span></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">and find External_variables.txt, once you find this edit it with Notepad++</span></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Once you open it on Notepad Find 'YOURHOTELIP' highlight it and hold ctrl+h and replace it with your hamachi, VPS, or dedi ip</span></span></p><p> </p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Run your emulator once again and go to <a href="http://localhost" target="_blank">http://localhost</a> and go on your client like this-> <a href="http://localhost/client" target="_blank">http://localhost/client</a></span></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Other users will go on your hotel with the ip you used.</span></span></p><p> </p><p><span style="font-size: 22px"><span style="font-family: 'arial black'">Errors that can happen:</span></span></p><p><span style="font-size: 18px"><span style="font-family: 'arial'">If you get Unkown column 'seckey' in 'field list' while registering add the following query to your MySQL Database By going to your hotel database and clicking SQL </span></span></p><p>[PHP]ALTER TABLE `users` ADD `seckey` VARCHAR(999)[/PHP]</p><p> </p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Any other things i have missed out or is wrong please tell me so i can improve <img src="/styles/default/xenforo/smilies/emojione/smile.png" class="smilie" loading="lazy" alt=":)" title="Smile :)" data-shortname=":)" /></span></span></p><p> </p><p><span style="font-size: 18px"><span style="font-family: 'arial'">Thanks for reading this Tutorial, Enjoy your hotel for whoever it was Successful</span></span></p><p> </p><p> </p><p>Credits:</p><p>Me - 10% For tut</p><p>Kryptos - 50% for RevCMS 1.9.9.9</p><p>KidRamboDubsteps - 40% for Working Swfs</p><p> </p><p>By John(Helpmeimanewb)</p></blockquote><p></p>
[QUOTE="helpmeimanewb, post: 146505, member: 20148"] [FONT=arial][SIZE=4]Hello Guys, welcome to my first tutorial on devbest.[/SIZE][/FONT] [SIZE=4][FONT=arial]We will be creating a RevCMS hotel so hope it turns out well Enjoy![/FONT][/SIZE] [SIZE=6][FONT=arial black]Downloads:[/FONT][/SIZE] [SIZE=5][FONT=arial]Xampp 1.7.3 -[/FONT][/SIZE][SIZE=5][URL]http://www.oldapps.com/xampp.php?old_xampp=46[/URL][/SIZE] [SIZE=5][FONT=arial]RevCMS - [/FONT][URL]http://www.mediafire.com/?m9pa4biy89ac4da[/URL][/SIZE] [SIZE=5][FONT=arial]Phoenix Emulator - DevBest does not support cracked Phoenix Google it or (Recommened) Buy Phoenix License.[/FONT][/SIZE] [SIZE=5][FONT=arial]Kidrambodubsteps SWF'S - [/FONT][/SIZE][SIZE=5][URL]http://www.mediafire.com/?cstupi0ay5s2vtv[/URL][/SIZE] [SIZE=5][FONT=arial]Notepad++ - [/FONT][URL]http://notepad-plus-plus.org/download/v6.1.8.html[/URL][/SIZE] [SIZE=6][FONT=arial black]How to create the hotel:[/FONT][/SIZE] [SIZE=5][FONT=arial]First of all we need to download Xampp, Download Xampp from the link above or your own link, Once you have done this Open XAMPP control panel and run apache and MySQL[/FONT][/SIZE] [SIZE=5][FONT=arial]Now go to [URL]http://localhost/security/xamppsecurity[/URL] and set your password (You must remember this Passoword)[/FONT][/SIZE] [SIZE=5][FONT=arial]after you have set your password go to [URL]http://localhost/phpmyadmin[/URL] and log in (Your password is the password you setup 1 step ago)[/FONT][/SIZE] [SIZE=5][FONT=arial]Now create A database and call it 'del_revcms' once you have created this database[/FONT][/SIZE] [SIZE=5][FONT=arial]Extract Your phoenix Emulator to your desktop and return to [URL]http://localhost/phpmyadmin[/URL][/FONT][/SIZE] [SIZE=5][FONT=arial]now once your on your database Click the 'Import' Tab and Choose file. [/FONT][/SIZE] [SIZE=5][FONT=arial]Locate your Pheonix Emulator file and Open the 3.7.1 SQL [/FONT][/SIZE] [SIZE=5][FONT=arial]Now click go, If you cannot see the tables reload the page.[/FONT][/SIZE] [SIZE=5][FONT=arial]Extract your RevCMS to c:/xampp/htdocs/->[/FONT][/SIZE] [SIZE=5][FONT=arial]Once this is complete go to app/manangement and edit Config with Notepad++ along the lines of this[/FONT][/SIZE] [PHP]<?php if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file.'); } #Please fill this all out. #NOTE: To set up TheHabbos.ORG's API go to wwwroot/mysite/thehabbos_api for IIS, OR, htdocs/thehabbos_api for XAMPP and others. /* * * MySQL management * */ $_CONFIG['mysql']['connection_type'] = 'pconnect'; //Type of connection: It must be connect, or pconnect: if you want a persistent connection. $_CONFIG['mysql']['hostname'] = 'localhost'; //MySQL host $_CONFIG['mysql']['username'] = 'root'; //MySQL username $_CONFIG['mysql']['password'] = 'password you created earlier'; //MySQL password $_CONFIG['mysql']['database'] = 'del_revcms'; //MySQL database $_CONFIG['mysql']['port'] = '3306'; //MySQL's port /* * * Hotel management - All URLs do not end with an "/" * */ $_CONFIG['hotel']['server_ip'] = 'Hamachi, VPS, or dedi IP'; //IP of VPS/DEDI/etc $_CONFIG['hotel']['url'] = 'http:// Hamachi, VPS, or dedi IP '; //Does not end with a "/" $_CONFIG['hotel']['name'] = 'Hotel name'; // Hotel's name $_CONFIG['hotel']['desc'] = 'Where the Magic Begins!'; //Hotel's description $_CONFIG['hotel']['email'] = 'helpme@hotmail.co.uk'; //Where the help queries from users are emailed to.@Priv skin $_CONFIG['hotel']['in_maint'] = false; //False if hotel is NOT in maintenance. True if hotel IS in maintenance $_CONFIG['hotel']['motto'] = 'Motto users will register with' ; //Default motto users will register with. $_CONFIG['hotel']['credits'] = 5000; //Default number of credits users will register with. $_CONFIG['hotel']['pixels'] = 10000; //Default number of pixels users will register with. $_CONFIG['hotel']['figure'] = '-'; //Default figure users will register with. $_CONFIG['hotel']['web_build'] = '63_1dc60c6d6ea6e089c6893ab4e0541ee0/1285'; //Web_Build $_CONFIG['hotel']['external_vars'] = 'http:// Hamachi, VPS, or dedi IP /r63/external_variables.txt'; //URL to your external vars $_CONFIG['hotel']['external_texts'] = 'http:// Hamachi, VPS, or dedi IP /r63/external_flash_texts.txt'; //URL to your external texts $_CONFIG['hotel']['product_data'] = 'http:// Hamachi, VPS, or dedi IP /r63/productdata.txt'; //URL to your productdata $_CONFIG['hotel']['furni_data'] = 'http:// Hamachi, VPS, or dedi IP /r63/furnidata.txt'; //URL to your furnidata $_CONFIG['hotel']['swf_folder'] = 'http:// Hamachi, VPS, or dedi IP /r63/'; //URL to your SWF folder(does not end with a '/') /* * * Templating management - Pick one of our default styles or make yours by following our examples! * */ #RevCMS has 2 default styles, 'Mango' by dannyy94 and 'Priv' by joopie - Others styles are to come, such as RastaLulz's ProCMS style and Nominal's PhoenixCMS 4.0 style. $_CONFIG['template']['style'] = 'Habbo'; /* * * Other topsites.. thing * */ $_CONFIG['thehabbos']['username'] = 'Kryptos'; $_CONFIG['retro_top']['user'] = 'Kryptos'; /* * * Recaptcha management - Fill the information below if you have one, else leave it like that and don't worry, be happy. * */ $_CONFIG['recaptcha']['priv_key'] = '6LcZ58USAAAAABSV5px9XZlzvIPaBOGA6rQP2G43'; $_CONFIG['recaptcha']['pub_key'] = '6LcZ58USAAAAAAQ6kquItHl4JuTBWs-5cSKzh6DD'; /* * * Social Networking stuff * */ $_CONFIG['social']['twitter'] = 'TwitterAccount'; //Hotel's Twitter account $_CONFIG['social']['facebook'] = 'FacebookAccount'; //Hotel's Facebook account ?>[/PHP] [SIZE=5][FONT=arial]Once you have done this Save and go to [URL]http://localhost[/URL] and if your index loads register [/FONT][/SIZE] [SIZE=5][FONT=arial]Now Locate your Phoenix Emulator file and edit config.conf with notepad++ to something along the lines of this[/FONT][/SIZE] [PHP]## Phoenix 3.0 System Configuration File ## Licence Information Otaku-Studios.username=JayPwnsAll Otaku-Studios.password=Rulez ## MySQL Configuration db.hostname=localhost db.port=3306 db.username=root db.password=password you set earlier db.name=del_revcms ## MySQL pooling setup (controls amount of connections) db.pool.minsize=5 db.pool.maxsize=100 ## Game TCP/IP Configuration game.tcp.bindip=hamachi, VPS, or dedi ip game.tcp.port=30000 game.tcp.conli mit=5000 ## Client configuration client.ping.enabled=1 client.ping.interval=30000 ## MUS TCP/IP Configuration mus.tcp.bindip=hamachi, VPS, or dedi ip mus.tcp.port=30001 mus.tcp.allowedaddr=hamachi, VPS, or dedi ip ## Console Configuration emu.messages.connections=1 emu.messages.roommgr=1 [/PHP] [SIZE=5][FONT=arial]Save and run your emulator if it loads carry on, if not re read steps.[/FONT][/SIZE] [SIZE=5][FONT=arial]Now for your client to work you will need to edit your swfs so,[/FONT][/SIZE] [SIZE=5][FONT=arial]Extract your swfs you downloaded 'r63' to c:/xampp/htdocs/-> [/FONT][/SIZE] [SIZE=5][FONT=arial]and find External_variables.txt, once you find this edit it with Notepad++[/FONT][/SIZE] [SIZE=5][FONT=arial]Once you open it on Notepad Find 'YOURHOTELIP' highlight it and hold ctrl+h and replace it with your hamachi, VPS, or dedi ip[/FONT][/SIZE] [SIZE=5][FONT=arial]Run your emulator once again and go to [URL]http://localhost[/URL] and go on your client like this-> [URL]http://localhost/client[/URL][/FONT][/SIZE] [SIZE=5][FONT=arial]Other users will go on your hotel with the ip you used.[/FONT][/SIZE] [SIZE=6][FONT=arial black]Errors that can happen:[/FONT][/SIZE] [SIZE=5][FONT=arial]If you get Unkown column 'seckey' in 'field list' while registering add the following query to your MySQL Database By going to your hotel database and clicking SQL [/FONT][/SIZE] [PHP]ALTER TABLE `users` ADD `seckey` VARCHAR(999)[/PHP] [SIZE=5][FONT=arial]Any other things i have missed out or is wrong please tell me so i can improve :)[/FONT][/SIZE] [SIZE=5][FONT=arial]Thanks for reading this Tutorial, Enjoy your hotel for whoever it was Successful[/FONT][/SIZE] Credits: Me - 10% For tut Kryptos - 50% for RevCMS 1.9.9.9 KidRamboDubsteps - 40% for Working Swfs By John(Helpmeimanewb) [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Tutorials
[TUT] How to make a RevCMS Habbo retro [TUT]
Top