1 comments
Wamp on windows vista or windows 7 installs perfectly fine but there are 2 important things to be done to get it run. 

1. After installing Wamp Stop IIS, Because IIS uses Port 80 so Apache will not be able to start unless and until Port 80 is free so stop IIS. 

2. The Next Most Common issue is with PHPmyadmin after when we try to run PHPmyadmin it shows PHPmyadmin access denied

to solve this problem go to the installation  folder of PHPmyadmin which is located at 
C:\wamp\apps\phpmyadmin3.2.0.1\libraries and search for config.default.php file and search for the below line

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

Replace the above line with

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

Thats IT ...

Enjoy .... :-)


1 comments:

brds said...

I tried this and I'm still receiving the "#1045 - Access denied for user 'root'@'localhost' (using password: NO)" message. I also went into the config.inc.php file and put the password for the root user in that file.

Leave a Reply