Monday, February 25, 2013

WAMP Server ERROR “Forbidden You don't have permission to access /phpmyadmin/ on this server.”


WAMP Server ERROR

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



If you are getting this error and you want to overcome it just follow the basic step 

Go to Folder C:\wamp\alias.
 Open the file phpmyadmin.conf 
And Edit

<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>
To

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

And your problem is solved......












No comments:

Post a Comment