Home>Article>Operation and Maintenance> phpstudy cannot enter phpmyadmin
phpstudy cannot enter phpmyadmin:
1. First of all, it is because Mysql has not set a password. Now enter PHPStudy→Other Options Menu→MySQL Tools. The first one is to set or Change the password. The initial password is root, then change the password.
2. There is no phpMyAdmin folder in the root directory of the website or the folder has been deleted by mistake.
Download and install phpMyAdmin from the official website, portal: https://www.phpmyadmin.net/downloads/
3. config in the phpmyadmin directory. The username and password configured in inc.php are incorrect.
First check if config.inc.php has the following two lines:
$cfg['Servers'][$i]['user'] = 'Your database Account';
$cfg['Servers'][$i]['password'] = 'Your database password';
Change to the correct user name and password and it will "automatically Log in to "phpmyadmin. If you want to cancel the "automatic login" function, just delete these 2 lines.
The above is the detailed content of phpstudy cannot enter phpmyadmin. For more information, please follow other related articles on the PHP Chinese website!