Home  >  Article  >  Database  >  phpmyadmin prompts token mismatch error

phpmyadmin prompts token mismatch error

王林
王林Original
2019-12-28 16:35:272850browse

phpmyadmin prompts token mismatch error

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:

phpmyadmin prompts token mismatch error

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn