Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Q&A
[NEED] Zap Hotel DB
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="iHarrison" data-source="post: 188174" data-attributes="member: 13942"><p>[code]</p><p>DROP TABLE IF EXISTS `hk_fuses`;</p><p>CREATE TABLE `hk_fuses` (</p><p> `fuse` varchar(50) NOT NULL,</p><p> `minrank` int(11) NOT NULL DEFAULT '1'</p><p>) ENGINE=MyISAM DEFAULT CHARSET=utf8;</p><p> </p><p> </p><p>INSERT INTO `hk_fuses` VALUES ('login', '9');</p><p>INSERT INTO `hk_fuses` VALUES ('site_manage', '11');</p><p>INSERT INTO `hk_fuses` VALUES ('pornban', '11');</p><p>INSERT INTO `hk_fuses` VALUES ('adv_edit', '11');</p><p> </p><p> </p><p>DROP TABLE IF EXISTS `profile_wall`;</p><p>CREATE TABLE `profile_wall` (</p><p> `id` int(11) NOT NULL AUTO_INCREMENT,</p><p> `page_id` int(11) NOT NULL,</p><p> `poster_id` int(11) NOT NULL,</p><p> `message` text NOT NULL,</p><p> `likes` int(11) NOT NULL DEFAULT '0',</p><p> `owner_read` enum('0','1') NOT NULL DEFAULT '0',</p><p> PRIMARY KEY (`id`)</p><p>) ENGINE=MyISAM AUTO_INCREMENT=1343 DEFAULT CHARSET=latin1;</p><p> </p><p> </p><p>DROP TABLE IF EXISTS `site_hotcampaigns`;</p><p>CREATE TABLE `site_hotcampaigns` (</p><p> `id` int(11) NOT NULL AUTO_INCREMENT,</p><p> `order_id` int(11) NOT NULL DEFAULT '1',</p><p> `enabled` enum('0','1') NOT NULL DEFAULT '1',</p><p> `image_url` text NOT NULL,</p><p> `caption` text NOT NULL,</p><p> `descr` text NOT NULL,</p><p> `url` text NOT NULL,</p><p> PRIMARY KEY (`id`)</p><p>) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;</p><p> </p><p> </p><p>DROP TABLE IF EXISTS `site_news`;</p><p>CREATE TABLE `site_news` (</p><p> `id` int(10) unsigned NOT NULL AUTO_INCREMENT,</p><p> `seo_link` varchar(120) NOT NULL DEFAULT 'news-article',</p><p> `title` text NOT NULL,</p><p> `category_id` int(10) unsigned NOT NULL DEFAULT '1',</p><p> `topstory_image` text NOT NULL,</p><p> `body` text NOT NULL,</p><p> `snippet` text NOT NULL,</p><p> `datestr` varchar(50) NOT NULL,</p><p> `timestamp` int(11) NOT NULL,</p><p> PRIMARY KEY (`id`),</p><p> KEY `datestr` (`datestr`) USING BTREE</p><p>) ENGINE=MyISAM AUTO_INCREMENT=512 DEFAULT CHARSET=latin1;</p><p> </p><p> </p><p>DROP TABLE IF EXISTS `badge_shop`;</p><p>CREATE TABLE `badge_shop` (</p><p> `badge_id` varchar(12) NOT NULL,</p><p> `cost` int(100) NOT NULL,</p><p> KEY `badge_id` (`badge_id`)</p><p>) ENGINE=MyISAM DEFAULT CHARSET=utf8;</p><p> </p><p>ALTER TABLE `users` ADD `position` VARCHAR(30) NOT NULL</p><p>ALTER TABLE `users` ADD `acc_pornbanned` TEXT NOT NULL[/COLOR]</p><p> </p><p>[/code]</p><p> </p><p>I dunno if that's what you're looking for but run that if you haven't already. If you're having problems with Illumina CMS then that would be the first thing to try.</p></blockquote><p></p>
[QUOTE="iHarrison, post: 188174, member: 13942"] [code] 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'); 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; ALTER TABLE `users` ADD `position` VARCHAR(30) NOT NULL ALTER TABLE `users` ADD `acc_pornbanned` TEXT NOT NULL[/COLOR] [/code] I dunno if that's what you're looking for but run that if you haven't already. If you're having problems with Illumina CMS then that would be the first thing to try. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
[NEED] Zap Hotel DB
Top