If you are using PhpMyAdmin as part of WAMP(Windows, Apache, MySQL and PHP), then you need to take care of the root password and hence follow the steps.
If you change, only the MySQL password or PHPMyAdmin Password, then the PHPMyAdmin screen does not show the databases, files, etc (instead it will show access denied).
- So Both MySQL and PhpMyAdmin password should be changed and both password should be equal.
- Go to mysql command window (by default the MySQL has no password)
- Execute the command set password=password(”abc123″);
- find the config.inc.php file under phpmyadmin folder (usually in WAMP it will be under C:\wamp\apps\phpmyadmin2.11.6) and find the following line in the config.inc.php file $cfg['Servers'][$i]['password'] = ‘ ‘; // MySQL password
- Replace the line to $cfg['Servers'][$i]['password'] = ‘abc123′; (as the password the mysql is also “abc123″.
- now restart the server and now open http://localhost/phpmyadmin/
Comments
Post a Comment