Since this morning I get this below error:
Warning: mysqli_query(): (HY000/1194): Table 'wp_postmeta' is marked as crashed and should be repaired in C:\xampp\htdocs\wp_project\wp-includes\wp-db.php on line 2056
After that I logged into mysql terminal:
mysql -uroot -p
Then select database:
use wp_project
Then run the below command to fix the target table:
REPAIR TABLE wp_project.wp_postmeta;
And it solves the issue 👍
No comments:
Post a Comment