Removed.
Removed.
Last edited by Vaulient; 02-12-13 at 02:42 AM.
Looks Nice! Will try this out!
Yea well the link to the emu and revcms is stil being updated though. My internet is pre shit oh and I forgot the ubercms needs a web gallery , I'll update a link.
Shit, i read it wrong. I thought you had minimails and homes for revcms haha. Damm!
Last edited by Vaulient; 30-11-13 at 05:07 PM.
Is The CMS Uploaded yet?
Revcms you mean? 90 %done , ubercms has been uploaded xD
The database by ubercms is missing tables, could you fix it?
https://www.mediafire.com/?wd5gbqe43suk8am revcms link updated
What table is it missing cuz I checked out on my localhost , it works fine.
It said Site_cron.
Meh Uber? where is the credits to Meth0d? i duno about this is there any exploits?
I duno if method deved Uber CMS not sure but yeah.
Thaks i guess.
If your missing the "site_cron" table simply run this sql
After you may need to add "site_config"PHP Code:CREATE TABLE `site_cron` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`prio` int(11) NOT NULL DEFAULT '5',
`enabled` enum('0','1') NOT NULL DEFAULT '1',
`scriptfile` varchar(50) NOT NULL,
`last_exec` int(11) NOT NULL,
`exec_every` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
Then run thisPHP Code:CREATE TABLE `site_config` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`maintenance` enum('0','1') NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `maintaince` (`maintenance`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
site_naviPHP Code:INSERT INTO site_config VALUES ('1', '0');
Add these and you should be goodPHP Code:CREATE TABLE IF NOT EXISTS `site_navi` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int(10) unsigned NOT NULL DEFAULT '0',
`order_id` int(11) NOT NULL,
`caption` text NOT NULL,
`class` text NOT NULL,
`url` text NOT NULL,
`visibility` enum('0','1','2','3') NOT NULL COMMENT '0 = Never, 1 = Always, 2 = Logged in only, 3 = Guests only',
PRIMARY KEY (`id`),
KEY `parent_id` (`parent_id`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=35 ;
--
-- Dumping data for table `site_navi`
--
INSERT INTO `site_navi` (`id`, `parent_id`, `order_id`, `caption`, `class`, `url`, `visibility`) VALUES
(1, 0, 1, '%habboName%', 'metab', '%www%/me', '2'),
(2, 1, 1, 'Home', '', '/me', '1'),
(5, 0, 2, 'Community', '', '%www%/community', '1'),
(4, 1, 4, 'Account Settings', '', '%www%/profile', '2'),
(7, 5, 1, 'Community', '', '%www%/community', '1'),
(8, 0, 1, 'Register At Habbo', 'tab-register-now', '%www%/register', '3'),
(9, 6, 1, 'Credits', '', '%www%/credits', '1'),
(10, 6, 3, 'Pixels', '', '%www%/credits/pixels', '1'),
(13, 12, 1, 'Shop Home', '', '%www%/vip/shop', '2'),
(14, 1, 2, 'My Page', '', '%www%/home/%habboName%', '2'),
(16, 5, 3, '%shortName% Staff', '', '%www%/community/staff', '1'),
(17, 5, 2, 'News', '', '%www%/articles', '1'),
(18, 12, 2, 'Get Points', '', '%www%/vip/getpoints', '2'),
(27, 26, 1, 'Credits', '', '%www%/tops', '1'),
(34, 0, 8, 'Facebook', 'tab-register-now', 'http://facebook.com/habbodotvg', '1'),
(6, 0, 3, 'Credits', ' ', '%www%/credits', '1');
P.S - One table is missing and I could not find it, "hotel_alert" table
Last edited by DarkWing; 30-11-13 at 08:43 PM.
Good release bro. However I think not many people use UberCMS anymore.