Home  >  Article  >  Backend Development  >  How to implement empty password login in phpmyadmin 3.4_PHP Tutorial

How to implement empty password login in phpmyadmin 3.4_PHP Tutorial

WBOY
WBOYOriginal
2016-07-21 15:37:04812browse

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 and put

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

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


Just started learning recently. I don’t know how to verify it and record it here.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/322033.htmlTechArticleBecause I upgraded php to 5.3.1, the previous phpmyadmin version cannot be used, so I upgraded to phpMyAdmin 3.2. In version 4, you will encounter the situation where you cannot log in to the root user with a blank password. How to solve...
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