Hi,
I've built an apache2+webdav server, and it seems to work right. The users
connect it by web, the server asks them for user and passwd, the user type
it and everything works right but when they try to download a file they just
get 35Kb of the file, and the server doesn't give any error.
Anyone know why it happens?
I add you the conf file of the site
<VirtualHost *>
ServerAdmin [email protected]
ServerName prueba.midominio.com
DocumentRoot /var/www/midominio/prueba/
<Directory /var/www/midominio/prueba/>
Options Indexes MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
<Location />
DAV On
AuthType Basic
AuthName "Prueba"
AuthUserFile /var/www/midominio/passwd.dav
Require valid-user
</Location>
</VirtualHost>
Best regards.