How to log in to phpMyAdmin with WAMP, what is the username and password? How to log in to phpMyAdmin with WAMP, what is the username and password? windows windows

How to log in to phpMyAdmin with WAMP, what is the username and password?


Try username = root and password is blank.


http://localhost/phpmyadmin

Username: root

Password:

(No password set)


Sometimes it doesn't get login with username = root and password, then you can change the default settings or the reset settings.

Open config.inc.php file in the phpmyadmin folder

Instead of

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

change it to:

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

Do not specify any password and put the user name as it was before, which means root.

E.g.

$cfg['Servers'][$i]['user'] = 'root';$cfg['Servers'][$i]['password'] = '';

This worked for me after i had edited my config.inc.php file.