First open the common.inc.php configuration under the libraries file in the phpmyadmin directory
$token_mismatch = true; if (PMA_isValid($_REQUEST['token'])) { $token_mismatch = ($_SESSION[' PMA_token '] != $_REQUEST['token']);
Then add:
$token_mismatch = false;
As shown in the picture:
Finally save the file and restart the service.
Recommended related articles and tutorials: phpmyadmin tutorial
The above is the detailed content of phpmyadmin prompts token mismatch error. For more information, please follow other related articles on the PHP Chinese website!