Home Software Technologies Easy Steps to Fix 403 Forbidden Errors in Wamp Server

Easy Steps to Fix 403 Forbidden Errors in Wamp Server

36
83220
Wamp Server

Have you recently installed Wamp server on stand alone system or trying to access wamp server to another computer connected through LAN with your PC that gives 403 forbidden error?

Are you looking for an information on how to fix this error quickly? Don’t worry, this article can solve your problem in minutes.

If you are facing 403 forbidden error in Wamp Server, it clearly indicate that the server is preventing you to accessing particular resources. 403 forbidden is the most common error being faced by many developers while installing WAMP server on PC. If you’re one who just installed Wamp server 3.0 and got this error message “403 Forbidden Error – You don’t have permission to access / on this server.”, don’t panic, you can fix this forbidden error in just 5 minutes by following these 5 simple steps.

forbidden error msg

Before I start explaining the steps, here is the possible reason why this error occurs:

Forbidden errors generally occur due to permission mismatch and can solve by editing .conf and .conf files. In most cases, 403 forbidden errors will occur in both “LocalHost” and “PhpMyadmin”. In this tutorial, we will explain how to solve the errors for both.

How to fix 403 forbidden error in Localhost

Quick Steps:

If you are familiar with most of the parts, follow these quick steps to solve forbidden errors:

  • Open httpd.conf (Location – C:\wamp\bin\apache\apacheX.X.XX\conf\httpd.conf/ replace X.X.XX with the version number).
  • Find text in <Directory/>  </Directory> having Deny from all and replace with Allow from all
  • Also find this code:  Order Deny, Allow, Deny from all, Allow from 127.0.0.1
    and replace with Order Deny, Allow Deny from all, Allow from all
  • Now restart all services of the wamp server
  • Click on localhost or goto default browser and write localhost and it will start working

Detailed Steps to fix the error:

Step 1:

Open “httpd.conf” file from below path.

C:\wamp\bin\apache\apache2.2.22\conf\httpd.conf (You need to locate your drive where you have installed wamp. In this case, we have installed wamp in C drive)

Or

Open from TaskBar Icon

httpd config file location

Left Click on Wamp Server Icon => Apache =>httpd.conf

Step 2:

Find these lines from httpd.conf file

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

</Directory>

And replace it with

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

</Directory>

Step 3:

Also, find these codes in httpd.conf file

Order Deny,Allow
Deny from all
Allow from 127.0.0.1

And replace it with

Order Deny,Allow
Deny from all
Allow from All

Save the file and close it.

Step 4:

Then go to Wamp Server Icon, Right-click on it, and Press Restart All Services. See the below image:

Wamp restart all services

Step 5:

In Wamp Server  click on Localhost as shown in the below image

Start local host

OR go to your default web browser and write “Localhost” at URL

It’s Done!

forbidden error solution

Solve 403 Forbidden Error in PhpMyAdmin

phpmyadmin error

Here is the simple solution of Forbidden error in while you are accessing Phpmyadmin in your wamp server.

Quick Steps:

  • Open phpmyadmin.conf file
  • Find this code:  Order Deny, Allow, Deny from all, Allow from 127.0.0.1
    and replace with Order Deny, Allow, Deny from all, Allow from all
  • Save the file and restart all services
  • Now access PhpMyadmin from your wamp server or directly access from the default browser
  • Its done!

If you are looking for detailed steps to fix this error, follow the below guidelines.

Step 1:

Open “phpmyadmin.conf” file from the below path (first locate your wamp installation. In our case, we have installed them in C drive)

C:\wamp\alias\phpmyadmin.conf

Step 2:

In that file, you will find two similar source codes in which you need to edit a small portion explain below. Make sure you edit both source codes.

Find this Code

Order Deny,Allow
Deny from all
Allow from 127.0.0.1

And replace it with

Order Deny,Allow
Deny from all
Allow from all

Step 3:

Now follow step 4 explained in the above solution in which you need to restart all services from your wamp.

Step 4:

Now, start your wamp server and click on PHPMyAdmin as shown below image.

start phpmyadmin

After successfully editing code and specified file, you will see the below console in your web browser:

phpmyadmin

If you are still getting the same error or need any other resolution, don’t hesitate to write here by comment. I will show you how to fix those errors in an easy way.

Fix 403 Forbidden error on other computer in local network

Recently we received a comment from a user-facing issue while accessing wamp on PC connected through the local network. Here is the exact query from Vikram:

I have established a network using a D-Link router. I don’t have a problem accessing the WampServer instance from the machine where it is installed(say, Machine A). But, if I try to launch providing say; http://<ip-address-machine a=””> from another machine (say, Machine B)
I am getting a Forbidden error. I could ping from machine B to Machine A.
Tried playing around httpd.conf … having ‘Allow from all’.
Do you have any hint for this?

Solution:

Later, Vikram has suggested the solution to this 403 forbidden error while accessing wamp on a network device. You can resolve this issue by editing the’ httpd-vhosts.conf’ file:

Change 'Require local' to 'Require all granted'.

Other important tips:

  • Disable conflicting apps – We found that the applications or services running on your system may interfere with Wamp server’s functioning. If above solution doesn’t work for you, try disabling firewall, anti-virus or other security software temporary and see if the error is gone.
  • You can also review Apache error log which you can find here (C:\wamp\bin\apache\apacheX.X.XX\logs\error.log) and try to find any error related to 403. Here you will be able to identify specific issues and can resolved accordingly.
  • You should also consider clearing browser cookies and cache – As we found that sometime the error may be caused by the cached data in browser. You can also try accessing server from different browser or in incognito mode.
  • If any of these solution does’t sovle the 403 forbidden error – the chances are that there might be other factor which is causing 403 forbidden error. In such case, you should consult your technician or take help from Wamp server community online.

Final Thoughts

As Wamp server is periodically publishing never and advanced version of WAMP that may have different functionality. If you find any issues while fixing the Forbidden error on your latest wamp server, feel free to write us a hereby comment or drop us an email. Our technical team will try to resolve it and will provide the best possible solution.