Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Custom RevCMS Theme

Status
Not open for further replies.
Junior Spellweaver
Joined
Feb 27, 2011
Messages
158
Reaction score
78
Hi Everyone.

Today I've decided to release my RevCMS (habbo) theme. If you've ever played on my hotel (limeHotel) you'll know what it looks like. If you wanna see the CMS yourself, just go to .

Many people want me to release it, so here you go.

The only thing that isn't included in the CMS are the news comments seeing as my friend made them for me and don't want them released. Have fun.

I'd like to hear any positive feedback about the theme

Download link: limehotel.us/app/tpl/skins/Habbo/HabboTheme.rar

Code:
-- ----------------------------
-- Table structure for `cms_campaigns`
-- ----------------------------
DROP TABLE IF EXISTS `cms_campaigns`;
CREATE TABLE `cms_campaigns` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` text CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL,
  `image` varchar(100) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL,
  `url` varchar(255) NOT NULL,
  `desc` text CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
 
-- ----------------------------
-- Records of cms_campaigns
-- ----------------------------
(Query for the hot campaigns)
 
Last edited:
Experienced Elementalist
Joined
Mar 17, 2013
Messages
245
Reaction score
28
Do you have to add anything to the database for this cms to work? it has vaults and other additional features. (using phoenix)
 
Junior Spellweaver
Joined
Feb 27, 2011
Messages
158
Reaction score
78
Do you have to add anything to the database for this cms to work? it has vaults and other additional features. (using phoenix)

The vault is just a placeholder as when I moved my hotel over to rev I didn't have time to actually make the script. Other then that it's just the original phoenix database.
 
Experienced Elementalist
Joined
Jun 7, 2012
Messages
244
Reaction score
27
Thanks for this man , +1 if u dont mind I'm going to use some of your code for my edit.
 
Experienced Elementalist
Joined
Jun 7, 2012
Messages
244
Reaction score
27
will do! quick question.. Whats wrong with the Refferals?
 
Experienced Elementalist
Joined
Jun 7, 2012
Messages
244
Reaction score
27
Oh, I didn't get round to coding that. You might wanna delete the referral on the register.php as I forgot to delete it when I was testing a script.

Ok will do thanks for the information.
 
Newbie Spellweaver
Joined
Jan 26, 2013
Messages
85
Reaction score
15
Hi Everyone.

Today I've decided to release my RevCMS (habbo) theme. If you've ever played on my hotel (limeHotel) you'll know what it looks like. If you wanna see the CMS yourself, just go to .

Many people want me to release it, so here you go.

The only thing that isn't included in the CMS are the news comments seeing as my friend made them for me and don't want them released. Have fun.

I'd like to hear any positive feedback about the theme

Download link: limehotel.us/app/tpl/skins/Habbo/HabboTheme.rar

Great Release! Many thanks for this.
 
Experienced Elementalist
Joined
Jun 7, 2012
Messages
244
Reaction score
27
Back again one quick question , how are the news comments set up/ used. Im not seeing a different on the THEME , and would mind uploading your news table?aka cms comments rev.
 
Junior Spellweaver
Joined
Feb 27, 2011
Messages
158
Reaction score
78
Back again one quick question , how are the news comments set up/ used. Im not seeing a different on the THEME , and would mind uploading your news table?aka cms comments rev.


I deleted news comments on the release since my friend jake coded them and didn't want them to be released.
 
Experienced Elementalist
Joined
Jun 7, 2012
Messages
244
Reaction score
27
oh, well thanks anyways was looking forward to it
 
Experienced Elementalist
Joined
Feb 19, 2012
Messages
287
Reaction score
23
Awesome! Thanks! 10/10

EDIT: The Theme Mess Up
Wouto - Custom RevCMS Theme - RaGEZONE Forums
 
Last edited:
Zephyr Studios
Loyal Member
Joined
Feb 18, 2012
Messages
1,877
Reaction score
724
It's beautiful Jack, thanks for the release.
 
Experienced Elementalist
Joined
Feb 19, 2012
Messages
287
Reaction score
23
MOD,delete this please,thank you

reason: double post
 
Last edited:
Junior Spellweaver
Joined
Feb 27, 2011
Messages
158
Reaction score
78
Awesome! Thanks! 10/10

EDIT: The Theme Mess Up
Wouto - Custom RevCMS Theme - RaGEZONE Forums
Had this error with another guy at another forum.
Replace the index.php in htdocs/wwwroot with
Code:
<?php 
define('IN_INDEX', 1);

require_once 'global.php';
$core->handleCall($engine->secure($_GET['url']));
	$template->html->get($engine->secure($_GET['url']));
$template->outputTPL();
?>

It's beautiful Jack, thanks for the release.

No problem.
 
Status
Not open for further replies.
Back
Top