Categories
Wamp Server

WAMP: Forbidden You don’t have permission to access /phpmyadmin/ on this server

WAMP: Forbidden You don’t have permission to access /phpmyadmin/ on this server

In this post we will discuss how to solve error: WAMP: Forbidden You don’t have permission to access /phpmyadmin/ on this server. Recently i am working on a project on which we have to install WAMP Server on windows Server and team members have to access phpmyadmin on organization LAN. Everything is working fine in localhost but in lan it is giving error: WAMP: Forbidden You don’t have permission to access /phpmyadmin/ on this server.

How to solve this error:

1. Open phpmyadmin.conf located on C:\Wamp\alias.

2. Replace following code with below mention code.

<Directory "c:/wamp/apps/phpmyadmin4.1.14/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from localhost ::1 127.0.0.1
</Directory>

New Code:

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