Comment 4 for bug 227852

Revision history for this message
Tomek Jadczuk (mishek) wrote : Re: [Bug 227852] Re: Nautilus get error when I try to open webdav directories

Dnia 2008-05-10, sob o godzinie 20:45 +0000, Sebastien Bacher pisze:
> thank you for your bug report. could you use an english local to get the
> error descriptions? does the gvfs-ls, etc command work correctly?
>
> ** Changed in: nautilus (Ubuntu)
> Importance: Undecided => Low
> Assignee: (unassigned) => Ubuntu Desktop Bugs (desktop-bugs)
> Status: New => Incomplete
>
Hello

I think this may be helpful:
address:
dav://<email address hidden>/shared_dir/
gives error in connection

addres:
dav://addres.of.dav.server/shared_dir/
works fine.

This is my webdav server config:

<VirtualHost *:*>
        ServerName dav.test.local
        DocumentRoot /var/webdav/

 CustomLog /var/log/apache2/dav-access.log combined
   ErrorLog /var/log/apache2/dav-error.log

 DavLockDB /usr/share/apache2/var/DavLock

 <Location />
        Dav On
        AuthName "WebDAV Login"
        AuthType Basic
        AuthUserFile /etc/apache2/passwd
 ## Limit access for enhanced security
 <LimitExcept GET HEAD OPTIONS POST>
                Require valid-user
 </LimitExcept>
        Order allow,deny
        Allow from all
 </Location>

</VirtualHost>

apache server is from default ubuntu instalation.