Comments Off on Repair WordPress Database by PhpMyAdmin
Repair WordPress Database by PhpMyAdmin
This post will describe how to “Repair WordPress Database by PhpMyAdmin” in step by step. WordPress use MySQL database; and sometimes MySQL table become inaccessible due to some errors and need to be repaired. “Repair WordPress Database” is an easy procedure but may save you at your very crucial moment.
- Log in to your cPanel and select phpMyadmin
-
After logged in to phpMyAdmin, select the database from the right corner
- Check all tables
- Just right of check all select “Repair table”
- Check the output after clicking “Repair table”
- Repair all tables by sql command
you can also run repair command from your sql window or sql command prompt.REPAIR TABLE `wp_commentmeta` , `wp_comments` , `wp_links` , `wp_options` , `wp_postmeta` , `wp_posts` , `wp_terms` , `wp_term_relationships` , `wp_term_taxonomy` , `wp_usermeta` , `wp_users`
Repair is not a frequent operation. It requires only when you can’t access a table of your database. However for safe purpose you can run it once a month
There is a same procedure by which you can Optimize WordPress Database by PhpMyAdmin