Home  >  Article  >  Backend Development  >  Solution to the problem of being prohibited from logging in with an empty password in phpmyadmin3.4_PHP Tutorial

Solution to the problem of being prohibited from logging in with an empty password in phpmyadmin3.4_PHP Tutorial

WBOY
WBOYOriginal
2016-07-21 14:54:221016browse

How to solve the problem that phpmyadmin3.4 is blocked when logging in with an empty password

Many times we will set the root user password to empty when testing on this machine. Because I upgraded php to 5.3.1, the previous phpmyadmin version cannot be used. When I upgrade to phpMyAdmin version 3.2.4, I will encounter the situation where I cannot log in to the root user with an empty password. How to solve it? Please refer to the following steps:

1. Open the directory where the program is located

2. Find the config.default.php file in the libraries directory

 $cfg['Servers'][$i]['AllowNoPassword'] = false; modified to

$cfg['Servers'][$i]['AllowNoPassword'] = true;

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/364594.htmlTechArticleHow to solve the problem that phpmyadmin3.4 empty password login is prohibited. Many times we will use the root user when testing this machine. Password is set to blank. Because I upgraded php to 5.3.1, the previous phpm...
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