Illuminia CMS [PHP, OOP, MySQLi, Uber 3]

zMagenta

Posting Freak
Jul 15, 2011
1,414
682
Illumina
in PHP, Object Oriented, MySQL Improved Engine

CMS Features:

  • Very easy configuration
  • Very easy template system
  • TheHabbos intergration
  • Login
  • Quickregister
  • News system
  • Badge Shop
  • Hot campaigns system
  • Change password, trade status, friend request status
  • Community (Random Habbos, news, staff page, twitter)
  • User Profiles (can comment on users walls, view profile. More to come later
  • APC PHP Caching (if enabled)

IlluminASE Features:
  • View Staff
  • IP check users
  • Check PayGol Pin codes
  • Edit a users account (if has adv_edit fuse, can edit rank)
  • Make a user VIP
  • Change a users password
  • External user sign-on
  • View the ban list (has numbered pages and a search option)
  • Ban a user
  • Porn ban a user
  • Manage news articles (edit needs to be added.)
  • Write news articles

Unfinished / To come:
  • View badge definitions
  • Add badge definition
  • Database configuration & editor
  • Shut down your emulator (Butterfly/Skull users)
  • Maintenance switching (use the config for now.)
  • Advanced account editor (will probably be removed anyway)
  • CMS-based Homes (to replace Profiles when i'm ready to code it.)

Screenshots:


2hZYO.png




2hZZ6.png




2hZZM.png




2i00z.png




2i00T.png




2i01j.png


Setup Instructions:
  1. Download Illumina CMS
  2. If using Apache/Xampp/Wampp, skip to step 4
  3. Convert the .htaccess to a web.config or install helicon ape
  4. Use notepad++ to edit /engine/lightcms.php
  5. Run the SQLs provided below
  6. Enjoy your new CMS
SQL Queries to run:
Code:
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=MyISAM AUTO_INCREMENT=1343 DEFAULT CHARSET=latin1;
 
 
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=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
 
 
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=MyISAM AUTO_INCREMENT=512 DEFAULT CHARSET=latin1;
 
 
DROP TABLE IF EXISTS `badge_shop`;
CREATE TABLE `badge_shop` (
  `badge_id` varchar(12) NOT NULL,
  `cost` int(100) NOT NULL,
  KEY `badge_id` (`badge_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
DROP TABLE IF EXISTS `hk_fuses`;
CREATE TABLE `hk_fuses` (
  `fuse` varchar(50) NOT NULL,
  `minrank` int(11) NOT NULL DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
 
INSERT INTO `hk_fuses` VALUES ('login', '9');
INSERT INTO `hk_fuses` VALUES ('site_manage', '11');
INSERT INTO `hk_fuses` VALUES ('pornban', '11');
INSERT INTO `hk_fuses` VALUES ('adv_edit', '11');

Download:

All credits to Jonteh - This is just a re-release.
 

SkeetEmUp

Habpl.us
May 16, 2011
326
112
I've never got the point of re-releasing. If the person who released it wanted to release it here they would have... No need for you to do so.
 

Akar123

New Member
Feb 4, 2013
3
0
Your permissons on the cache folder, add iusr with full control
Johno can you help me fix my hotel.. its with Illumina CMS but the emulator wont work. so can you please set up the hotel for me. its only the Client that needs Fix the emulator has problem. Our hotels can be partners and i am willing you pay you if you want.
 

Leader

github.com/habbo-hotel
Aug 24, 2012
1,006
267
Johno can you help me fix my hotel.. its with Illumina CMS but the emulator wont work. so can you please set up the hotel for me. its only the Client that needs Fix the emulator has problem. Our hotels can be partners and i am willing you pay you if you want.
So you pay him to make you owner since obv cant make one

Ex Post Facto
 

Akar123

New Member
Feb 4, 2013
3
0
LOl someone send me a good Emulator i can use on Illumina CMS .. name on skype.. Akar.shwani1

Thanks
 

GDArifGD

New Member
Feb 6, 2013
11
0
hmmm can you gimme tutorial about the client !! ?? my client wat said "LightCMS MySQLi Engine Error" under the desription said >> (Unknown column 'acc_pornbanned' in 'field list') so plis help me for my client !!

Thank :) :rasta:
 

Johno

:: xHosts :: www.xhosts.uk
Sep 12, 2011
581
246
hmmm can you gimme tutorial about the client !! ?? my client wat said "LightCMS MySQLi Engine Error" under thedesription said >> (Unknown column 'acc_pornbanned' in 'field list') so plis help me for my client !!

Thank :) :rasta:

Run this in your sql manager

ALTER TABLE `users` ADD `acc_pornbanned` TEXT NOT NULL
 

Users who are viewing this thread

Top