Hello,

I am facing one problem in http server configuration in centos 5.3. When i tried to upload file to server through http client it is saying that " An HTTP error occurred while uploading file, Error code 403:forbidden.
But I am able to browse the directory through browser.
I need help to solve this problem.
My httpd.conf like this

DocumentRoot "/home/httpd/webdav"

<Directory />
   Options FollowSymLinks
   AllowOverride None
</Directory>

<Directory "/home/httpd/webdav">
Options Indexes FollowSymLinks
   AllowOverride None
   Order allow,deny
   Allow from all
</Directory>

<IfModule mod_userdir.c>
    UserDir disable
  #UserDir public_html
</IfModule>

<Directory /home/httpd/webdav>
#    AllowOverride FileInfo AuthConfig Limit
   Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
   <Limit GET POST OPTIONS>
       Order allow,deny
       Allow from all
   </Limit>
   <LimitExcept GET POST OPTIONS>
       Order deny,allow
       Deny from all
   </LimitExcept>
</Directory>


Thanks
Venugopal








---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [email protected]
  "   from the digest: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to