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/illum...mysqli-934826/
For use with: http://forum.ragezone.com/f353/comet...netty-1099167/
SQL:
Download: https://zaphotel.net/comet_illumina.rarCode:/* 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 -- ----------------------------
Comet SQL: https://zaphotel.net/comet_db.rar
Credits: @Clawed (For adding correct script exits after a redirect header in 2013)



Reply With Quote![Illumina CMS [Comet Server]](http://ragezone.com/hyper728.png)


