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!

Illumina CMS [Comet Server]

Joined
Apr 30, 2007
Messages
2,339
Reaction score
1,547
Hi,

I wanted to test Comet Server, but I had no CMS. I've edited a clean copy of Illumina and made it work with Comet. This didn't take long, so some things may not work, however I gave it a quick once-over and most things seem to be working fine.

More information: http://forum.ragezone.com/f353/illumina-cms-php-oop-mysqli-934826/
For use with: http://forum.ragezone.com/f353/comet-server-2016-java-netty-1099167/

SQL:

Code:
/*
Navicat MySQL Data Transfer


Source Server         : local
Source Server Version : 50711
Source Host           : 127.0.0.1:5566
Source Database       : comet


Target Server Type    : MYSQL
Target Server Version : 50711
File Encoding         : 65001


Date: 2016-04-01 22:58:28
*/


SET FOREIGN_KEY_CHECKS=0;


-- ----------------------------
-- Table structure for hk_fuses
-- ----------------------------
DROP TABLE IF EXISTS `hk_fuses`;
CREATE TABLE `hk_fuses` (
  `fuse` varchar(50) NOT NULL,
  `minrank` int(11) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;


-- ----------------------------
-- Records of hk_fuses
-- ----------------------------
INSERT INTO `hk_fuses` VALUES ('login', '8');
INSERT INTO `hk_fuses` VALUES ('site_manage', '11');
INSERT INTO `hk_fuses` VALUES ('pornban', '11');
INSERT INTO `hk_fuses` VALUES ('adv_edit', '11');


-- ----------------------------
-- Table structure for profile_wall
-- ----------------------------
DROP TABLE IF EXISTS `profile_wall`;
CREATE TABLE `profile_wall` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `page_id` int(11) NOT NULL,
  `poster_id` int(11) NOT NULL,
  `message` text NOT NULL,
  `likes` int(11) NOT NULL DEFAULT '0',
  `owner_read` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=latin1;


-- ----------------------------
-- Records of profile_wall
-- ----------------------------


-- ----------------------------
-- Table structure for site_hotcampaigns
-- ----------------------------
DROP TABLE IF EXISTS `site_hotcampaigns`;
CREATE TABLE `site_hotcampaigns` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL DEFAULT '1',
  `enabled` enum('0','1') NOT NULL DEFAULT '1',
  `image_url` text NOT NULL,
  `caption` text NOT NULL,
  `descr` text NOT NULL,
  `url` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;


-- ----------------------------
-- Records of site_hotcampaigns
-- ----------------------------


-- ----------------------------
-- Table structure for site_news
-- ----------------------------
DROP TABLE IF EXISTS `site_news`;
CREATE TABLE `site_news` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `seo_link` varchar(120) NOT NULL DEFAULT 'news-article',
  `title` text NOT NULL,
  `category_id` int(10) unsigned NOT NULL DEFAULT '1',
  `topstory_image` text NOT NULL,
  `body` text NOT NULL,
  `snippet` text NOT NULL,
  `datestr` varchar(50) NOT NULL,
  `timestamp` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `datestr` (`datestr`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;


-- ----------------------------
-- Records of site_news
-- ----------------------------

Download:
Comet SQL:


Credits: @Clawed (For adding correct script exits after a redirect header in 2013)
 
Last edited:
Software Engineer
Loyal Member
Joined
Feb 19, 2008
Messages
1,055
Reaction score
492
Thanks for another contribution, this should help people interested in Comet to use the server on their own hotels without having to hack up other CMS' though we'll likely see people editing Rev and others.
 
Junior Spellweaver
Joined
Jul 11, 2012
Messages
116
Reaction score
52
Have fun using Illumina, you'll get fucked xoxo.
 
Joined
Apr 30, 2007
Messages
2,339
Reaction score
1,547
Boy, I can't wait for someones database to be dropped when using this. :w00t:

Nice man, real mature. I would love to see any proof of this ever happening.



Have fun using Illumina, you'll get fucked xoxo.

Oh yeah? And since when did I go around 'Ducking' hotels for using this? The only example would be when I did not add a script exit after redirecting players to a new page, which allowed you to login to HK without a valid rank. Was fixed by Clawed

You are both incredibly annoying to even bring up something that happened 3 years ago. Sorry for releasing anything :[!!
 
Junior Spellweaver
Joined
Mar 4, 2013
Messages
121
Reaction score
6
Is it missing the quickregister? I can't click on register
 
Junior Spellweaver
Joined
Jun 8, 2014
Messages
117
Reaction score
19
Download taken down again, get it here:


Awesome release, looks like Habbo is doing their job :8:

Here's a mirror :D



Cheers!
 
Last edited:
Back
Top