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
Client stuck at 76%
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="Maatt" data-source="post: 462862" data-attributes="member: 21669"><p>In the first instance, I would suggest that you find a clean SQL and reset/reimport your MySQL database. </p><p></p><p>If you are using an existing MySQL database, you might try running the following SQLs but this is no silver bullet; it looks as if you could be missing other things too...</p><p></p><p>[PHP]</p><p>-- ----------------------------</p><p>-- Table structure for server_status</p><p>-- ----------------------------</p><p>DROP TABLE IF EXISTS `server_status`;</p><p>CREATE TABLE `server_status` (</p><p> `users_online` int(11) NOT NULL DEFAULT 0,</p><p> `loaded_rooms` int(11) NOT NULL DEFAULT 0,</p><p> UNIQUE KEY `users_online` (`users_online`) USING BTREE</p><p>) ENGINE=InnoDB DEFAULT CHARSET=latin1;</p><p></p><p>-- ----------------------------</p><p>-- Records of server_status</p><p>-- ----------------------------</p><p>INSERT INTO `</p><p>` VALUES ('0', '0');</p><p>[/PHP]</p></blockquote><p></p>
[QUOTE="Maatt, post: 462862, member: 21669"] In the first instance, I would suggest that you find a clean SQL and reset/reimport your MySQL database. If you are using an existing MySQL database, you might try running the following SQLs but this is no silver bullet; it looks as if you could be missing other things too... [PHP] -- ---------------------------- -- Table structure for server_status -- ---------------------------- DROP TABLE IF EXISTS `server_status`; CREATE TABLE `server_status` ( `users_online` int(11) NOT NULL DEFAULT 0, `loaded_rooms` int(11) NOT NULL DEFAULT 0, UNIQUE KEY `users_online` (`users_online`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of server_status -- ---------------------------- INSERT INTO ` ` VALUES ('0', '0'); [/PHP] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
Client stuck at 76%
Top