The solution to the error of phpmyadmin prompt token mismatch
This article will explain in detail the solution to the phpmyadmin prompt token discrepancy error. The editor thinks it is very practical, so I share it with you for reference. I hope you can get something after reading this article.
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 figure:
Finally, save the file and restart the service.
This is the end of this article on "the solution to the phpmyadmin prompt token discrepancy". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it for more people to see.