The solution to the token mismatch prompt in phpmyadmin: first open line 468 of [common.inc.php] under the libraries file in the phpmyadmin directory; then add [$token_mismatch = false]; finally save and restart. Can.
Solution to the token mismatch prompt in phpmyadmin:
Open ## under the libraries file in the phpmyadmin directory #common.inc.phpAdd the statement after line 468
$token_mismatch = true; if (PMA_isValid($_REQUEST['token'])) { $token_mismatch = ($_SESSION[' PMA_token '] != $_REQUEST['token']);
$token_mismatch = false;
Recommended related tutorials:
The above is the detailed content of What should I do if a token mismatch prompt appears in phpmyadmin?. For more information, please follow other related articles on the PHP Chinese website!