Home >Backend Development >PHP Tutorial >phpmyadmin configuration phpmyadmin 34 How to implement empty password login
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;
I just started learning it recently. I don’t know how to verify it and record it here.
The above introduces the implementation method of phpmyadmin configuration phpmyadmin 34 empty password login, including the content of phpmyadmin configuration. I hope it will be helpful to friends who are interested in PHP tutorials.