I am getting this error in wordpress phpMyadmin
#145 - Table './DB_NAME/wp_posts' is marked as crashed and should be repaired
When I login to phpMyadmin, it says wp_posts is “in use”
My website is currently down because of this.
I googled this problem, but I don’t see the “repair” button on phpMyadmin. Please let me know how to fix this. I am not sure where to issue PHP command. Please advise, my proficiency with PHP is very basic.
Here is where the repair button is:
Run this from your server’s command line:
I had the same issue when my server free disk space available was 0
You can use the command (there must be ample space for the mysql files)
for repairing individual tables
Connect to your server via SSH
then connect to your mysql console
and
-OR-
If there are a lot of broken tables in current database:
If there are a lot of broken tables in a lot of databases:
When I got this error:
I ran this command in PhpMyAdmin to fix it:
This means your MySQL table is corrupted and you need to repair it. Use
from the command line. While you running the repair you should shut down your website temporarily so that no new connections are attempted to your database while its being repaired.
Here is simple steps.
Go to phpmyadmin and checked that table which one crushed and then select Repair table option.
I agree with @Nican
you can follow the given steps. It works some times. I have faced the same Error many times in my experience. Itâs not easy to find the corrupted table in the MySQL database. Low disk space could be a major cause of this error.
You can use a command to repair the corrupted or crashed MySQL table.
Note: r means recovery mode
If it does not work, You can go for a difficult repair.
Step 1 â Shift a database to a safe location.
Step 2- Create a new empty data and index file.
Step 3- Copy the old data file back onto the newly created data file
Note: You must maintain the main backup copy to recover if something goes wrong.
If both solutions do not work for you, I strongly recommend you go for a stellar repair for MySQL. This one is my best friend in my bad situations. It saves my data many times