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 error
Author
juankasalas



Joined: 14 May 2006
Posts: 3

PostPosted: Sun 14 May '06 3:33    Post subject: 403 error Reply with quote

hi i do everything this forum said, but the apache server send me a 403 error... please help me

Juan Carlos
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7288
Location: Germany, Next to Hamburg

PostPosted: Sun 14 May '06 12:20    Post subject: Reply with quote

Which page do you call with your browser? Wich OS?, Apache Version?, PHP Version?, etc? How does your config look like? Any error messages in the error log?
Back to top
juankasalas



Joined: 14 May 2006
Posts: 3

PostPosted: Sun 14 May '06 19:08    Post subject: Reply with quote

well i call index.php, or index.html and send 403 error, those are on the selected webserver directory, the OS is Windows XP SP2, apache 2.22, php 5.014 the message is only 403 forbiden
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7288
Location: Germany, Next to Hamburg

PostPosted: Sun 14 May '06 19:32    Post subject: Reply with quote

I guess that the directority for the webroot is not equal with the rules for that
i.e.
Code:

DocumentRoot "/server2/www"


#must be same path like in docroot

<Directory "/server2/www">
    Options Indexes FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

#protect the root folder (Drive)
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>
Back to top


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