Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

php

wamp

Hi Friends previously I am using XAMP Server but when I install joomla Templates it creates alots of error. Now I installed the WAMP, but the issues are: 1. I can access with 127.0.0.1, but I cant access with "localhost". 2 When i access phpmyadmin i get this error.

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

 Alias /phpmyadmin "c:/wamp/apps/phpmyadmin3.4.5/"   # to give access to phpmyadmin from outside  # replace the lines # #        Order Deny,Allow #   Deny from all #   Allow from 127.0.0.1 # # by # #        Order Allow,Deny  #   Allow from all # 

After changing, it will look like this

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

After this just restart Wamp

like image 847
Shamas Avatar asked May 15 '12 12:05

Shamas


People also ask

Why phpMyAdmin is not working in WAMP?

Look under options >> advanced >> connection and see if "use port 80" is checked. Uncheck if so. Then restart Skype. Might have to restart WAMP too.

How do I access phpMyAdmin in WAMP?

From the WAMP start page (http://localhost) under “Tools”, start phpMyAdmin (or find the WAMP icon in the notification area, left click to open and select phpMyAdmin).


1 Answers

Go to C:\wamp\alias. Open the file phpmyadmin.conf and change

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

problem solved

like image 175
dipo Avatar answered Sep 28 '22 07:09

dipo