1/* Answer to: "phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server." */
2
3/*
4 Go to c:\wamp\apps\phpmyadmin3.3.9. Then open/edit the file named:
5 config.inc.php
6
7 And in the following line, enter the password that you have setup
8 previously:
9 $cfg['Servers'][$i]['password'] = '';
10 > If your password is "123":
11 > $cfg['Servers'][$i]['password'] = '123';
12
13 This should work, if not change this:
14 from: $cfg['Servers'][$i]['AllowNoPassword'] = true;
15 to: $cfg['Servers'][$i]['AllowNoPassword'] = false;
16*/