installation and configuration Wamp server 2 on Windows 8
Download free wamp server from official website from <a href="http://www.wampserver.com/en/">http://www.wampserver.com/en/</a>
After Intalling click on Wampserver Short Cut Icon from Desktop.
on task bar It shows green color icon it means all services started.
Open browser and type localhost or 127.0.0.1
If it shows :
ERROR
Not Found
HTTP Error 404. The requested resource is not found.
Go to clicn on green icon - > Apache - > httpd.conf
Change Listen 80 to Listen 81
Open browser and type localhost:81 or 127.0.0.1:81
and if it shows :
Forbidden
You don't have permission to access / on this server.
Then change to > listen 0.0.0.0:81
For phpmyadmin
http://localhost:81/phpmyadmin
Error
MySQL said: Documentation
#1045 - Access denied for user 'root'@'localhost' (using password: NO)
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.
Open mysql in console using wampserver - > Mysql - > mysql console
Set Password for mysql
SET Password=PASSWORD("EnterYourPasswordHere") WHERE User="root";
FLUSH PRIVILEGES;
exit;
Then go to local
C:\wamp\apps\phpmyadmin3.5.1\config.inc.php
$cfg['Servers'][$i]['password'] = 'set your password here';
make a project
C:\wamp\www\
http://localhost:81/projectname
After Intalling click on Wampserver Short Cut Icon from Desktop.
on task bar It shows green color icon it means all services started.
Open browser and type localhost or 127.0.0.1
If it shows :
ERROR
Not Found
HTTP Error 404. The requested resource is not found.
Go to clicn on green icon - > Apache - > httpd.conf
Change Listen 80 to Listen 81
Open browser and type localhost:81 or 127.0.0.1:81
and if it shows :
Forbidden
You don't have permission to access / on this server.
Then change to > listen 0.0.0.0:81
For phpmyadmin
http://localhost:81/phpmyadmin
Error
MySQL said: Documentation
#1045 - Access denied for user 'root'@'localhost' (using password: NO)
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.
Open mysql in console using wampserver - > Mysql - > mysql console
Set Password for mysql
SET Password=PASSWORD("EnterYourPasswordHere") WHERE User="root";
FLUSH PRIVILEGES;
exit;
Then go to local
C:\wamp\apps\phpmyadmin3.5.1\config.inc.php
$cfg['Servers'][$i]['password'] = 'set your password here';
make a project
C:\wamp\www\
http://localhost:81/projectname
Comments
Post a Comment