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!

UBERCMS Working homes , groups ,minimails together with REVCMS

Status
Not open for further replies.
Loyalty
Loyal Member
Joined
May 4, 2012
Messages
1,763
Reaction score
884
Yea well the link to the emu and revcms is stil being updated though. My internet is pre poop oh and I forgot the ubercms needs a web gallery , I'll update a link.
 
Newbie Spellweaver
Joined
Mar 7, 2013
Messages
73
Reaction score
4
Yea well the link to the emu and revcms is stil being updated though. My internet is pre poop oh and I forgot the ubercms needs a web gallery , I'll update a link.

Yeah i noticed that now xd
 
Elite Diviner
Joined
Feb 27, 2013
Messages
484
Reaction score
83
poop, i read it wrong. I thought you had minimails and homes for revcms haha. Damm!
 
Loyalty
Loyal Member
Joined
May 4, 2012
Messages
1,763
Reaction score
884
poop, i read it wrong. I thought you had minimails and homes for revcms haha. Damm!
Trust me , I tried converting it , it just kept getting messed up. UberCMS all the way.

Emu link has been updated.
 
Last edited:
Loyalty
Loyal Member
Joined
May 4, 2012
Messages
1,763
Reaction score
884
Revcms you mean? 90 %done , ubercms has been uploaded xD
 
Loyalty
Loyal Member
Joined
May 4, 2012
Messages
1,763
Reaction score
884
revcms link updated

The database by ubercms is missing tables, could you fix it?

What table is it missing cuz I checked out on my localhost , it works fine.
 
Not so spooky...
Loyal Member
Joined
May 22, 2010
Messages
1,017
Reaction score
276
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.
 
Skilled Illusionist
Joined
Dec 19, 2011
Messages
308
Reaction score
41
If your missing the "site_cron" table simply run this sql

PHP:
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;

After you may need to add "site_config"

PHP:
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;

Then run this

PHP:
INSERT INTO site_config VALUES ('1', '0');

site_navi

PHP:
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');

Add these and you should be good :thumbup1:

P.S - One table is missing and I could not find it, "hotel_alert" table
 
Last edited:
R.I.P Millercent
Loyal Member
Joined
Nov 6, 2012
Messages
2,230
Reaction score
314
If it's the Emu I sent to you (Vaulient) Then it has a few more fixes stated.

The UberCMS is Uber2 and should not have any exploits. Still a stress and a half on any server, but it's safe and works fine.
 
Loyalty
Loyal Member
Joined
May 4, 2012
Messages
1,763
Reaction score
884
Groups work with this? How can they work if there data can't be stored in a database as "groups_memberships" don't even exist in the database, what a Ducking joke.
It seems I provided the wrong Ducking db =.=' I''ll update it in a sec. And you don't need to be so pricky , wiseguy,

If it's the Emu I sent to you (Vaulient) Then it has a few more fixes stated.

The UberCMS is Uber2 and should not have any exploits. Still a stress and a half on any server, but it's safe and works fine.

Nah it's not the emu you gave , I changed back to the original revision 5 as your emu kept lagging much.

I love the index of your RevCMS edit. I might download it and convert the index to UberCMS for Baas. Thanks man. :)

Glad for that , please do :)

ubercms databse updated : removed
 
Last edited:
Joined
Feb 5, 2010
Messages
513
Reaction score
38
It seems I provided the wrong Ducking db =.=' I''ll update it in a sec. And you don't need to be so pricky , wiseguy,

To be honest why would anyone wanna use this when there's better CMS's out there like Uber2 as that has the same features and actually more secure, all the f*king files you added to this could be exploited in fact I bet you got this CMS from a Spanish forum & posted it here. lets face it you're a moron.

Code:
/*=======================================================================
| EGOCMS - Avanzado Sitio Web y Sistema de GestiĂłn de Contenidos.
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d' 'Jorge4813'
| http://www.habbex.org
| #######################################################################
| Este programa se distribuye con la esperanza de que sea Ăştil,
| pero SIN NINGUNA GARANTĂŤA, incluso sin la garantĂ­a implĂ­cita de
| COMERCIALIZACIĂ“N o IDONEIDAD PARA UN PROPĂ“SITO PARTICULAR. Consulte la
| Licencia Pública General GNU para más detalles.
\======================================================================*/
A rename of UberCMS "by a spanish coder?" I'm sure this is a Re-Release.
 
Status
Not open for further replies.
Back
Top