I have installed WAMP version 2.1 on my windows 7 machine. When my browse to localhost in my browser, the WAMP server page is visible.

But when I browse to my IP in my browser, I get the message

403 Forbidden: You don't have permission to access / on this server.

Any suggestions?

link|improve this question

78% accept rate
The access to your Apache server is forbidden from addresses other than 127.0.0.1 in httpd.conf (Apache's config file) – Nacereddine Nov 20 '11 at 21:37
I corrected that, now I am getting 403 Forbidden in my phpMyAdmin, any suggestions for that ? – Jake Nov 20 '11 at 21:42
there is also a phpmyadmin.conf that contains directives for the 'localhost/phpmyadmin' alias – Nacereddine Nov 20 '11 at 21:58
feedback

3 Answers

up vote 10 down vote accepted

The access to your Apache server is forbidden from addresses other than 127.0.0.1 in httpd.conf (Apache's config file) :

<Directory "c:/wamp/www/">
    Options Indexes FollowSymLinks
    AllowOverride all
    Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1
</Directory>

The same goes for your PHPMyAdmin access, the config file is phpmyadmin.conf :

<Directory "c:/wamp/apps/phpmyadmin3.4.5/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order Deny,Allow
        Deny from all
        Allow from 127.0.0.1
</Directory>

You can set them to allow connections from all IP addresses like follows :

AllowOverride All
Order allow,deny
Allow from all
link|improve this answer
This will certainly open up access from any IP address, but isnt that a little dangerous? The rule to allow 'from 127.0.0.1' should be enough to allow local access, if that is the main objective here, the 127.0.0.1 is basically a loop back to the network adaptor. If you type in the address bar 'http'://127.0.0.1:{portNumber}/{folderOrFileName}' it should work fine. This should work the same as using localhost, but I have found some browsers have issues with localhost for some reason. – Jez May 1 at 19:50
I couldnt format my address line in that last comment so there's an extra "'" in it just ignore that sorry if it confuses anyone. – Jez May 1 at 19:57
Note: the file sets defaults which are then overridden one at a time afterward, so make sure these lines go after all of the overrides. – meetar May 11 at 20:09
feedback

The solution for changing the permissions in the httpd.conf will work if you are OK with providing access to the WAMP server from outside.

If you do not want to do that then all you have to do is tell windows that the "localhost" domain points to 127.0.0.1. You can do that by editing the hosts file in your system directory.

The file is placed at : C:\Windows\System32\drivers\etc\hosts

by default windows 7 ships with :

# localhost name resolution is handled within DNS itself.
#   127.0.0.1       localhost
#   ::1             localhost

You have to un-comment the mapping for localhost:

# localhost name resolution is handled within DNS itself.
127.0.0.1       localhost
#   ::1         localhost

Note: you will not be able to edit the hosts file as its a read-only file. To edit, you have to be the administrator, copy the file to some other location, edit it and then copy it back to the etc directory.

I do not recommend the change of the hosts file. Use the permissions of httpd.conf file. use the hosts file approach only if you do not want the server accessed from outside.

link|improve this answer
feedback

hi there are 2 solutions :

1- change the port 80 to 81 in the text file (httpd.conf) and click 127.0.0.1:81

2-change setting the network go to control panel--network and internet--network and sharing center

click-->local area connection select-->propertis check true in the -allow other ..... and --- allo other .....

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.