MihaiB
MihaiB

Reputation: 139

403 error forbidden on localhost?

I have made a new project on Heroku, with a new ssh key, on an existing repo.

I installed WAMP and configured it to listen to port 8080.

Now when I start the WAMP server and try to access http://localhost:8080, I get

403 error forbidden. You don't have permission to access / on this server Apache error log:

    [Fri Mar 15 23:52:21 2013] [error] [client 127.0.0.1] client denied by server configuration: C:/facebook_apps/account_recevery/floating-inlet-7252/
[Fri Mar 15 23:52:22 2013] [error] [client 127.0.0.1] client denied by server configuration: C:/facebook_apps/account_recevery/floating-inlet-7252/favicon.ico

I've tried to find favicon.ico in that folder, and there is no such file. System and hidden files are shown.

Upvotes: 2

Views: 17265

Answers (1)

Sachin
Sachin

Reputation: 40990

Once upon a time I had this issue. So may be it will help you.

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>

Same setting changes could also apply in httpd.conf file as well.

Previously this contains following entry

Deny from all
Allow from 127.0.0.1

remove it from there and restart your server.

Upvotes: 3

Related Questions