Monday, November 3, 2014

Forbidden You don't have permission to access / on this server WAMP server local host problem solved 100% working

Hi Guys,

Today  i am going to explain about how to solve WAMP server " Forbidden  You don't have permission to access / on this server " problem. so many days i faced this problem finally i got a solution for this.
i am using windows 8 O/S.
.

"

Forbidden

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


when you open your WAMP server Local host you may get above mentioned error.

please follow this guide.
1.through the task bar WAMP server icon go to
Apache-->httpd.conf

it will open a text file

2. It this text file please search as "Documentroot"

then find as below

<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Denied from all
</Directory>

it should be changed as below

<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Allow from all
</Directory>

3. then go down and find below

Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1

</Directory>

it should be changed as below

Order Deny,Allow
    Deny from all
    Allow from ALL

</Directory>

and save this.

4. now you have to restart your wamp server.

now it will work you can see your localhost and php my admin

for more details please find below video.
if you face any troubles please let me know.


if it is working please put a comment
Thanks for read it.

This error occurs after installing wamp server and browse localhost. Error 403 forbidden you don't have permission to access /on this server
This tutorial shows the solution for this problem/error by editing httpd.conf file.100% working 



No comments:

Post a Comment