Error # 1045 Access denied in PhpMyAdmin

Basically I changed the MySQL password to CMD , and after that, when I tried to visit the phpmyadmin page, it showed me error # 1045 Access Denied.

I would like to solve this problem. Thanks in advance.

+7
source share
4 answers

Go to the phpMyAdmin folder (in my case it is C: \ wamp \ apps \ phpmyadmin3.2.0.1). In the config.inc.php file, change the line

 $cfg['Servers'][$i]['auth_type'] = 'config' 

to

 $cfg['Servers'][$i]['auth_type'] = 'cookie' 

Now you will be given a password the first time you visit the phpMyAdmin page

+10
source

you need to change the database password value in C: \ wamp \ apps \ phpmyadmin3.4.5 \ config.inc.php in your MySQL database password

for example: - $ cfg ['Servers'] [$ i] ['password'] = 'yourMySQLpassword';

+5
source

Just clear the cache and refresh the page. This should help you!

+2
source

You may need to change the password in the PPHMyAdmin config-db.php .

0
source

All Articles