| Saturday 23 June 2007 10:13:19 am 
                                                                
                                                                 
Hello all.I have searched all the forum topic about webdav, but without success with my problem.
 I have setup webdav in my site and I can login and see the site folders. In my case, the site folders are:
 ezwebin_site
 ezwebin_site_admin
 Also I can access in each site folder and see the Content and Media folder. But when I click in Content or Media return an error "...the folder not exist..."
 I use IE7 to access webdav. I see the internet adress at the right of each folder (Conten and Media) For example:
 Content --- http://webdav.zzz.org/ezwebin_site/Content
 
but when I click the Content folder, I get http://webdav.zzz.org/Content
 loose "ezwebin_site" path.
 
If I setup webdav in IE7 to http://webdav.zzz.org/ezwebin_site/Content I see the content folders.I don't know what happens.
 I use virtual host setup.
 My htaccess file:
 
        php_value magic_quotes_runtime 0
        php_value allow_call_time_pass_reference 0
        Options +FollowSymLinks +Indexes +ExecCGI
        RewriteEngine On
        Rewriterule ^var/storage/.* - [L]
        Rewriterule ^var/[^/]+/storage/.* - [L]
        RewriteRule ^var/cache/texttoimage/.* - [L]
        RewriteRule ^var/[^/]+/cache/texttoimage/.* - [L]
        Rewriterule ^design/[^/]+/(stylesheets|images|javascript)/.* - [L]
        Rewriterule ^share/icons/.* - [L]
        Rewriterule ^extension/[^/]+/design/[^/]+/(stylesheets|images|java|javascripts?)/.* - [L]
        Rewriterule ^packages/styles/.+/(stylesheets|images|javascript)/[^/]+/.* - [L]
        RewriteRule ^packages/styles/.+/thumbnail/.* - [L]
        RewriteRule ^favicon\.ico - [L]
        RewriteRule ^robots\.txt - [L]
        # Uncomment the following lines when using popup style debug.
        RewriteRule ^var/cache/debug\.html.* - [L]
        RewriteRule ^var/[^/]+/cache/debug\.html.* - [L]
        RewriteRule .* index.php
        RewriteCond %{HTTP_HOST} ^webdav\..*
        RewriteRule ^(.*) webdav.php [L]
        RewriteCond %{HTTP_HOST} ^soap\..*
        RewriteRule ^(.*) soap.php [L]
site.ini.append.php in override folder: 
[SiteSettings]
DefaultAccess=ezwebin_site
SiteList[]
SiteList[]=ezwebin_site
SiteList[]=ezwebin_site_admin
RootNodeDepth=1
IndexPage=/content/view/full/2/
DefaultPage=/content/view/full/2
...
SiteURL=www.zzz.org
[SiteAccessSettings]
ForceVirtualHost=true
CheckValidity=false
AvailableSiteAccessList[]=ezwebin_site
AvailableSiteAccessList[]=ezwebin_site_admin
MatchOrder=host
HostMatchMapItems[]=www.zzz.org;ezwebin_site
HostMatchMapItems[]=admin.zzz.org;ezwebin_site_admin
 Webdav is enabled and loggin too. I have setup virtual host in the main apache conf file. webdav.log get me: 
2007-06-23 14:11:58 : ****************************************
2007-06-23 14:11:58 : Fatal error: Exponential did not finish its request
2007-06-23 14:11:58 : The execution of Exponential was abruptly ended, the debug output is present below.
2007-06-23 14:11:58 : ****************************************
 Thank for any help. Normando Normando HallRosario - Argentina
 |