Tuesday 22 December 2009 12:55:46 pm
I've just configured webdav functionality on a domain.
I copy the same configuration of another domain that is working fine with webdav, but in webdav.log I get this report:
2009-12-22 21:46:57 : Requested URI is: /ita/ [webdav.php]
2009-12-22 21:46:57 : Used (cleaned) URI is: /ita/ [webdav.php]
2009-12-22 21:46:57 : setCurrentSite1:ita
2009-12-22 21:46:57 : setCurrentSite2:ita
2009-12-22 21:46:57 : Got username: admin
2009-12-22 21:46:57 : Processed to username: admin
2009-12-22 21:46:57 : AuthenticatedBasic
2009-12-22 21:46:57 : ****************************************
2009-12-22 21:46:57 : Fatal error: eZ Publish did not finish its request
2009-12-22 21:46:57 : The execution of eZ Publish was abruptly ended, the debug output is present below.
2009-12-22 21:46:57 : ****************************************
This is my vhost conf: <VirtualHost xxx.xxx.xxx.xxx:80> ServerName name_of_host:80
UseCanonicalName Off
ServerAlias webdav.name_of_host DocumentRoot /var/www/vhosts/name_of_host/httpdocs
<Directory /var/www/vhosts/name_of_host/httpdocs>
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag safe_mode off
php_admin_value open_basedir "/var/www/vhosts/name_of_host/httpdocs:/tmp"
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
php_admin_flag safe_mode off
php_admin_value open_basedir "/var/www/vhosts/name_of_host/httpdocs:/tmp" </IfModule>
Options FollowSymLinks Indexes ExecCGI
AllowOverride None
</Directory>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^webdav\..* RewriteRule ^(.*) /webdav.php [L] </VirtualHost>
Someone know why it doesn't work? In error.log there is nothing that could help me. Thanks a lot. Michele
|