Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
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.
| |
|
Topic: 403 error |
|
Author |
|
juankasalas
Joined: 14 May 2006 Posts: 3
|
Posted: Sun 14 May '06 3:33 Post subject: 403 error |
|
|
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: 7371 Location: Germany, Next to Hamburg
|
Posted: Sun 14 May '06 12:20 Post subject: |
|
|
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
|
Posted: Sun 14 May '06 19:08 Post subject: |
|
|
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: 7371 Location: Germany, Next to Hamburg
|
Posted: Sun 14 May '06 19:32 Post subject: |
|
|
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 |
|
|
|
|
|
|