Home >Backend Development >PHP Tutorial >WordPress moving error
Error description: The following error occurred when moving wordpress:
Error: Table 'XXXX' is marked as crashed and last (automatic?) repair failed
1. sudo service mysqld stop
2. cd /usr/local/mysql/var/dbName //db location
3. myisamchk -r tablename.MYI //Repair a single data table
or myisamchk -r *.MYI //Repair all data tables
4. sudo service mysql start (check: mysqlcheck -o -r dbName -p)
Copyright statement: This article This is an original article by the blogger and may not be reproduced without the blogger's permission.
The above has introduced the WordPress moving error, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.