Ainswoth Posted November 23, 2014 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 11 Reputation: 1 Joined: 02/11/14 Last Seen: May 29, 2018 Share Posted November 23, 2014 I tried fixing this error for quite some time now. And still didnt seen any solution to fix this. Please help me. The images are attached below. I also tried using this code inserting it to my query but still no luck. CREATE TABLE IF NOT EXISTS `ragsrvinfo` ( `index` int(11) NOT NULL default '0', `name` varchar(255) NOT NULL default '', `exp` int(11) unsigned NOT NULL default '0', `jexp` int(11) unsigned NOT NULL default '0', `drop` int(11) unsigned NOT NULL default '0' ) ENGINE=MyISAM; I hope someone can help me with this one Quote Link to comment Share on other sites More sharing options...
Conflicts Posted November 26, 2014 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 317 Reputation: 63 Joined: 11/13/11 Last Seen: March 23 Share Posted November 26, 2014 I don't know how you ended up with a corrupted ragsrvinfo table, but try running this query; DROP TABLE IF EXISTS `ragsrvinfo`; CREATE TABLE `ragsrvinfo` ( `index` int(11) NOT NULL default '0', `name` varchar(255) NOT NULL default '', `exp` int(11) unsigned NOT NULL default '0', `jexp` int(11) unsigned NOT NULL default '0', `drop` int(11) unsigned NOT NULL default '0' ) ENGINE=MyISAM; This will, drop your old ragsrvinfo table and re-create a new one. 1 Quote Link to comment Share on other sites More sharing options...
Radian Posted November 26, 2014 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Share Posted November 26, 2014 I tried fixing this error for quite some time now. And still didnt seen any solution to fix this. Please help me. The images are attached below. I also tried using this code inserting it to my query but still no luck. CREATE TABLE IF NOT EXISTS `ragsrvinfo` ( `index` int(11) NOT NULL default '0', `name` varchar(255) NOT NULL default '', `exp` int(11) unsigned NOT NULL default '0', `jexp` int(11) unsigned NOT NULL default '0', `drop` int(11) unsigned NOT NULL default '0' ) ENGINE=MyISAM; I hope someone can help me with this one go to your mysql then look for ragsrvinfo click it and look for the option " repair table " this happens to me last time reason was the host didn't update my payment and my server is down. Quote Link to comment Share on other sites More sharing options...
Question
Ainswoth
I tried fixing this error for quite some time now. And still didnt seen any solution to fix this. Please help me. The images are attached below.
I also tried using this code inserting it to my query but still no luck.
I hope someone can help me with this one
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.