Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just switch to win 8 from win 7. On win7 everything is OK with wampserver, but

When i try to access my wampserver via url localhost on win8, i got this error

Forbidden

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

but via url 127.0.0.1 is OK.

I try fix that error by change in phpmyadmin.conf into

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

Could anyone help me fix this error? Thanks!

share|improve this question
Did you find a solution? I've the same issue with win7 – J4N Aug 25 '12 at 14:10

4 Answers

Modify the apache HTTPD.CONF file. Change "Listen 80" to "Listen 0.0.0.0:80 http://forum.wampserver.com/read.php?2,93143

share|improve this answer
1  
I was having the same problem on Win8, but this solved it. Thanks a lot! – Ercument Kisa Mar 9 at 21:24

Change httpd.conf also and put Allow from all as given below.

<Directory "c:/wamp/www/">
    Options Indexes FollowSymLinks
    AllowOverride all
    Order Deny,Allow
    Allow from all
</Directory>
share|improve this answer

If you have an Anti-virus like AVIRA or AVG it certenly blocked changes to localhost by adding the "::1" entry in the HOSTS file in c:\windows\system32\drivers\etc\HOSTS All you have to do is to remove this line (::1) or just comment it by adding "#" sign in front of it in the hosts file.

share|improve this answer
<Directory "c:/wamp/apps/phpmyadmin3.5.1/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1
</Directory>

This is my .conf file...

share|improve this answer
is it OK on Win8? My original conf is same with your conf, but it not working on Win8, just 127.0.0.1 working. – sangpq Jul 22 '12 at 16:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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