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 / DocumentRoot in a FAT32 drive [SOLVED] |
|
Author |
|
Lionel09
Joined: 26 Jul 2010 Posts: 3
|
Posted: Mon 26 Jul '10 21:09 Post subject: 403 Error / DocumentRoot in a FAT32 drive [SOLVED] |
|
|
Hello,
I want to work with 2 OS (Ubuntu + Vista) on the same computer so I put all my web's work in the "datas" drive "D:/" under a "www" directory . This drive has been formated in FAT32.
After some work on rights under Ubuntu (I had a 403 too), I actually could get my websites but not on Vista: 403 error / "client denied by server configuration".
I think it's a problem of rights on directories because the "readonly" checkbox is checked in the "properties" box of my "www" directory: when i uncheck (with option "all the subdirectories"), Vista works 2mn and... When I reopen the "properties" box on the directory, it's always checked!
What have I to do?
Thanks!
Last edited by Lionel09 on Wed 28 Jul '10 12:06; edited 1 time in total |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Mon 26 Jul '10 21:13 Post subject: |
|
|
Do you use the same config file? What is in your error log about it? |
|
Back to top |
|
Lionel09
Joined: 26 Jul 2010 Posts: 3
|
Posted: Mon 26 Jul '10 21:24 Post subject: |
|
|
No, I use a different "httpd.conf": I've got a Apache2 on Ubuntu and another on Vista and each one is separatly configured.
In fact, the checkbox "readonly" is not exactly checked, but filled; when I create a new repository on this drive, it takes the same properties.
The error on log is:
Code: | [error] [client 127.0.0.1] client denied by server configuration: D:/www/rep |
|
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Tue 27 Jul '10 8:35 Post subject: |
|
|
The half checked box is windows behavior don't worry about that. Quote: | denied by server configuration | I think there is a small issue in your httpd.conf. You might post the vhost or if not using a vhost the relevant config part. |
|
Back to top |
|
Lionel09
Joined: 26 Jul 2010 Posts: 3
|
Posted: Tue 27 Jul '10 10:17 Post subject: |
|
|
yes, you were right, it was not a problem of directories rights, but a stupid mistake on my "httpd.conf" file: I had change only the DocumentRoot without updating the "Directory" directive...
Code: | <Directory "D:/www">
AllowOverride None
AcceptPathInfo On
Options None
Order allow,deny
Allow from all
</Directory> |
Thanks for keeping me in the right direction! |
|
Back to top |
|
|
|
|
|
|