logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: 403 Forbidden
Author
N-GAGE



Joined: 29 Jun 2006
Posts: 10

PostPosted: Sun 09 Jul '06 16:34    Post subject: 403 Forbidden Reply with quote

I read all the articles about this error from this forum but I can`t solve
this problem Sad

After I installed Apache 2.2, PHP 5.1.4 & MySQL 5.0.21 (from this guide) I restart my computer.
After this when i`ve started the server => "IT WORKS" Smile
Then I changed my document root:

Code:

DocumentRoot "d:/www/wwwroot"
<Directory "D:/www/wwwroot ">
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Satisfy all
</Directory>



And now I get this error - 403 Forbidden -
Forbidden

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



Can somebody help me ?
Back to top
Steffen
Moderator


Joined: 15 Oct 2005
Posts: 3049
Location: Hilversum, NL, EU

PostPosted: Sun 09 Jul '06 16:44    Post subject: Reply with quote

Replace the container with:

Code:
DocumentRoot "d:/www/wwwroot"
<Directory "D:/www/wwwroot ">
    Options FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>


Fore more info on this, see http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#order

Steffen
Back to top
N-GAGE



Joined: 29 Jun 2006
Posts: 10

PostPosted: Sun 09 Jul '06 19:37    Post subject: Thank you! Reply with quote

Steffen wrote:
Replace the container with:

Code:
DocumentRoot "d:/www/wwwroot"
<Directory "D:/www/wwwroot ">
    Options FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>


Fore more info on this, see http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#order

Steffen


Thank you very much Steffen for your time and patience in all the problems. Smile
Back to top


Reply to topic   Topic: 403 Forbidden View previous topic :: View next topic
Post new topic   Forum Index -> Apache