PHPMyAdmin错误:#126 -不正确的表密钥文件


PHPMyAdmin Errors: #126 - Incorrect key file for table

我刚刚在Win10(安装程序)上安装了XAMPP,但在我甚至做任何事情之前,PHPMyAdmin中出现错误:

我得到'你以root身份登录,没有密码,你应该更改它,所以我点击用户帐户,我得到这个:

Error
Static analysis:
5 errors were found during analysis.
Unexpected closing bracket. (near ")" at position 52)
Unexpected closing bracket. (near ")" at position 110)
Unexpected closing bracket. (near ")" at position 177)
Unexpected closing bracket. (near ")" at position 245)
Unexpected closing bracket. (near ")" at position 311)
SQL query: DocumentationEdit Edit
(SELECT DISTINCT `User`, `Host` FROM `mysql`.`user` )
UNION (SELECT DISTINCT `User`, `Host` FROM `mysql`.`db` )
UNION (SELECT DISTINCT `User`, `Host` FROM `mysql`.`tables_priv` )
UNION (SELECT DISTINCT `User`, `Host` FROM `mysql`.`columns_priv` )
UNION (SELECT DISTINCT `User`, `Host` FROM `mysql`.`procs_priv` )
ORDER BY `User` ASC, `Host` ASC
MySQL said: Documentation
#126 - Incorrect key file for table '.'mysql'db.MYI'; try to repair it
USE mysql;
CHECK TABLE db;
# When it comes back and tells you to REPAIR it,...
REPAIR TABLE db;
对于上次电源故障期间被打乱的其他MyISAM表也是如此。

在XAMPP的开箱即用的phpMyAdmin 4.5.0中有完全相同的问题。我刚刚更新到最新的phpMyAdmin(4.5.1)在我的情况下从https://www.phpmyadmin.net/

我使用这个指南来做更新:https://www.ostraining.com/blog/coding/update-phpmyadmin/

作为一个旁注,我有真正的问题,hack around和修理桌子上的东西应该开箱即用。