我无法访问我的 wp-admin(前端目前正在工作)。
WP 系统告诉我将
WP_ALLOW_REPAIR
添加到 wp-config.php
中的 true。
我做到了。
我按下修复数据库并收到以下消息:
wp_users: 1 client is using or hasn't closed the table properly
wp_usermeta: 9 clients are using or haven't closed the table properly
wp_posts: 21 clients are using or haven't closed the table properly
wp_comments: 33 clients are using or haven't closed the table properly
wp_options: Table is marked as crashed
wp_postmeta: 28 clients are using or haven't closed the table properly
wp_terms: 3 clients are using or haven't closed the table properly
wp_term_taxonomy: 18 clients are using or haven't closed the table properly
wp_term_relationships: 18 clients are using or haven't closed the table properly
wp_commentmeta: 26 clients are using or haven't closed the table properly
这是一个可以解决的问题吗,还是我应该...只是...找一些山丘跑去:/
主要业务站点。担心。什么给?请帮忙。
您发布的输出表明 wp_options 表存在问题。通常,可以通过发出修复命令来恢复(在执行任何操作之前备份所有数据)。要发出命令,您可以使用 phpMyAdmin 或任何您喜欢的客户端:
REPAIR TABLE wp_options
有关此命令的更多信息:MySQL 参考手册:REPAIR TABLE 语法
如果这没有帮助,请尝试使用以下参数发出命令:
REPAIR TABLE wp_options EXTENDED
或
REPAIR TABLE wp_options USE_FRM
阅读MySQL手册中有关USE_FRM的信息。
尝试访问您的服务器 phpmyadmin 面板,然后选择您的数据库,然后选择所有表,在显示表的主页的下部,您将看到一个下拉菜单,打开它并选择“修复表”选项
http://www.siteground.com/img/knox/tutorials/uploaded_images/images/phpmyadmin/31.jpg
希望对你有帮助