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
HabbieCMS Problem
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="Hypothesis" data-source="post: 448698" data-attributes="member: 83881"><p>Run this query.</p><p>[CODE]-- ----------------------------</p><p>-- Table structure for server_locale</p><p>-- ----------------------------</p><p>DROP TABLE IF EXISTS `server_locale`;</p><p>CREATE TABLE `server_locale` (</p><p> `key` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,</p><p> `value` text CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL,</p><p> PRIMARY KEY (`key`) USING BTREE</p><p>) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;</p><p></p><p>-- ----------------------------</p><p>-- Records of server_locale</p><p>-- ----------------------------</p><p>INSERT INTO `server_locale` VALUES ('', NULL);</p><p>INSERT INTO `server_locale` VALUES ('console.noticefromadmin', 'Notice from server administrator:');</p><p>INSERT INTO `server_locale` VALUES ('forum.group.not_found', 'Group not found');</p><p>INSERT INTO `server_locale` VALUES ('forum.permissions.admin_create_only', 'Only admins may perform this action');</p><p>INSERT INTO `server_locale` VALUES ('forum.permissions.creator_only', 'Only the Group Creator can perform this action');</p><p>INSERT INTO `server_locale` VALUES ('forum.post.reply.message.too_short', 'Your reply is too short');</p><p>INSERT INTO `server_locale` VALUES ('group.delete.member.limit', '100');</p><p>INSERT INTO `server_locale` VALUES ('moderation_kick_permissions', 'Oops, you do not have the required permissions to kick that user!');</p><p>INSERT INTO `server_locale` VALUES ('room_item_placed', 'Warning! This item was already in this room and was not removed from your hand. We have now removed this item from your hand.');</p><p>INSERT INTO `server_locale` VALUES ('room_model_missing', 'Sorry, this room model has not been added yet. Try again later.');</p><p>INSERT INTO `server_locale` VALUES ('room_name_length_short', 'Room name is too short for room creation!');</p><p>INSERT INTO `server_locale` VALUES ('room_rights_has_rights_error', 'User already has rights!');</p><p>INSERT INTO `server_locale` VALUES ('shutdown_alert', 'The server is going down for a reboot or maintenance. Once disconnected reload!\r\n\r\n');</p><p>INSERT INTO `server_locale` VALUES ('trade_failed', 'Trade failed.');</p><p>INSERT INTO `server_locale` VALUES ('user_not_found', 'Could not load user info, invalid user.');</p><p></p><p>SET FOREIGN_KEY_CHECKS = 1;[/CODE]</p></blockquote><p></p>
[QUOTE="Hypothesis, post: 448698, member: 83881"] Run this query. [CODE]-- ---------------------------- -- Table structure for server_locale -- ---------------------------- DROP TABLE IF EXISTS `server_locale`; CREATE TABLE `server_locale` ( `key` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `value` text CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL, PRIMARY KEY (`key`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact; -- ---------------------------- -- Records of server_locale -- ---------------------------- INSERT INTO `server_locale` VALUES ('', NULL); INSERT INTO `server_locale` VALUES ('console.noticefromadmin', 'Notice from server administrator:'); INSERT INTO `server_locale` VALUES ('forum.group.not_found', 'Group not found'); INSERT INTO `server_locale` VALUES ('forum.permissions.admin_create_only', 'Only admins may perform this action'); INSERT INTO `server_locale` VALUES ('forum.permissions.creator_only', 'Only the Group Creator can perform this action'); INSERT INTO `server_locale` VALUES ('forum.post.reply.message.too_short', 'Your reply is too short'); INSERT INTO `server_locale` VALUES ('group.delete.member.limit', '100'); INSERT INTO `server_locale` VALUES ('moderation_kick_permissions', 'Oops, you do not have the required permissions to kick that user!'); INSERT INTO `server_locale` VALUES ('room_item_placed', 'Warning! This item was already in this room and was not removed from your hand. We have now removed this item from your hand.'); INSERT INTO `server_locale` VALUES ('room_model_missing', 'Sorry, this room model has not been added yet. Try again later.'); INSERT INTO `server_locale` VALUES ('room_name_length_short', 'Room name is too short for room creation!'); INSERT INTO `server_locale` VALUES ('room_rights_has_rights_error', 'User already has rights!'); INSERT INTO `server_locale` VALUES ('shutdown_alert', 'The server is going down for a reboot or maintenance. Once disconnected reload!\r\n\r\n'); INSERT INTO `server_locale` VALUES ('trade_failed', 'Trade failed.'); INSERT INTO `server_locale` VALUES ('user_not_found', 'Could not load user info, invalid user.'); SET FOREIGN_KEY_CHECKS = 1;[/CODE] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
HabbieCMS Problem
Top