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 Forbidden |
|
Author |
|
N-GAGE
Joined: 29 Jun 2006 Posts: 10
|
Posted: Sun 09 Jul '06 16:34 Post subject: 403 Forbidden |
|
|
I read all the articles about this error from this forum but I can`t solve
this problem
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"
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: 3092 Location: Hilversum, NL, EU
|
Posted: Sun 09 Jul '06 16:44 Post subject: |
|
|
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
|
Posted: Sun 09 Jul '06 19:37 Post subject: Thank you! |
|
|
Thank you very much Steffen for your time and patience in all the problems. |
|
Back to top |
|
|
|
|
|
|