PhpMyAdmin 错误:令牌不匹配

2022-01-05 00:00:00 xampp mysql phpmyadmin

我最近在 xampp 上的 apache 上安装本地安装时遇到错误.我正在运行 phpmyadmin 的 v4.0.5.错误描述为错误:不匹配令牌.

I've just recently been getting an error in my local installation on installed on apache on xampp. I'm running v4.0.5 of phpmyadmin. The error description is Error: Mismatch Token.

有没有其他人遇到过这种情况并找到了解决方法?

Has anyone else experienced this an found a fix for it?

推荐答案

遇到了同样的问题.通过更改以下内容解决了它:

Had the same problem. Solved it by changing following:

$token_mismatch = true;

$token_mismatch = false;

在 xamppphpMyAdminlibrariescommon.inc.php

相关文章