-1

I installed WAMP SERVER on Windows 7 OS, when I launched WAMP SERVER icon turns green. when I hit localhost in browser it shows

website declined to show webpage

also when I try to access it with IP address in browser, it's shows WAMP index page,

but still unable to access PHPMYADMIN, browser produces error:

Forbidden, you don't have access...

Kaleem Ullah
  • 6,799
  • 3
  • 42
  • 47
Vijaya Savant
  • 135
  • 4
  • 19

1 Answers1

0

if you previously install WAMP and reinstalled it the it might be due to WAMP configurations. you need to set WAMP server configuration. to do so

Change the file content of c:\wamp\alias\phpmyadmin.conf to the following.

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

Here my WAMP installation is in the c:\wamp folder. Change it according to your installation.

Previously, it was like this:

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

Restart your Apache server after making these changes.

OR

if you're accessing it via Routed-IP address then you MUST put you're WAMP online. to do so:

Right Click Your WAMP icon and put online. then restart WAMP

Source -This Answer

Community
  • 1
  • 1
Kaleem Ullah
  • 6,799
  • 3
  • 42
  • 47