I am trying to set up webfolders with Apache 2.2.4 + webDAV.
I am trying to create files in the webfolder through the webdav-protocol in Konqueror, but I get the same message over and over again: "Access was denied while attempting to upload..."
On the contrary, I am able to download files (which I have forced in the webfolder directory using "sudo vim")
I included some information below that I think could be relevant.
I have symlinks to (amongst others) the following modules:
Part of my httpd.conf is:
chmod 777 doens't help
access.log says:
error.log says:
There's a .htaccess file in the webfolder directory which states:
Does anyone have a clue?
Thanks very much already!
I am trying to create files in the webfolder through the webdav-protocol in Konqueror, but I get the same message over and over again: "Access was denied while attempting to upload..."
On the contrary, I am able to download files (which I have forced in the webfolder directory using "sudo vim")
I included some information below that I think could be relevant.
I have symlinks to (amongst others) the following modules:
Code:
dav_fs.conf dav_fs.load dav.load auth_mysql.load include.load
Code:
<IfModule mod_dav.c> <Directory "/var/www/webfolders"> AllowOverride AuthConfig FileInfo Limit Indexes Options None ForceType text/plain DAV On AuthName "Webfolders kOOL" AuthType Basic AuthBasicAuthoritative Off AuthUserFile /dev/null AuthMySQL_Host localhost AuthMySQL_User XXXX AuthMySQL_Password XXXX Auth_MySQL_DB XXXX Auth_MySQL_Password_Table XXXX Auth_MySQL_Username_Field login Auth_MySQL_Password_Field password Auth_MySQL_Empty_Passwords Off Auth_MySQL_Encryption_Types PHP_MD5 </Directory> </IfModule>
access.log says:
Code:
127.0.0.1 - - [09/Jan/2008:22:34:15 +0100] "GET / HTTP/1.0" 200 935 "-" "Apache/2.2.4 (Ubuntu) DAV/2 PHP/5.2.3-1ubuntu6.2 (internal dummy connection)"
Code:
[Wed Jan 09 22:34:15 2008] [notice] caught SIGWINCH, shutting down gracefully [Wed Jan 09 22:34:15 2008] [error] (9)Bad file descriptor: apr_socket_accept: (client socket) [Wed Jan 09 22:34:15 2008] [error] (9)Bad file descriptor: apr_socket_accept: (client socket) [Wed Jan 09 22:34:15 2008] [error] (9)Bad file descriptor: apr_socket_accept: (client socket) [Wed Jan 09 22:34:15 2008] [error] (9)Bad file descriptor: apr_socket_accept: (client socket) [Wed Jan 09 22:34:15 2008] [error] (9)Bad file descriptor: apr_socket_accept: (client socket) [Wed Jan 09 22:34:25 2008] [notice] Apache/2.2.4 (Ubuntu) DAV/2 PHP/5.2.3-1ubuntu6.2 configured -- resuming normal operations
Code:
<Limit GET HEAD OPTIONS PROPFIND> Require user "myReadAndWriteUser" "myReadOnlyUser" </Limit> <LimitExcept GET HEAD OPTIONS PROPFIND> Require user "myReadAndWriteUser" </LimitExcept>
Thanks very much already!
Comment