logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: WebDAV with Windows XP and 7
Author
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7306
Location: Germany, Next to Hamburg

PostPosted: Thu 12 Jul '12 15:43    Post subject: WebDAV with Windows XP and 7 Reply with quote

I try to set up a wenDAV share with auth. I managed it only to have webdav without Auth and without SSL.

The thing that I want is webdav over SSL and with Auth.

OS is ubuntu hardy (8.04)

Code:

            DAVLockDB /var/DavLock
   <Location /webshare>
        Dav On
        AuthType Digest
        AuthName "example.com"
        AuthDigestDomain /webshare/ http://example.com/webshare/
        AuthDigestProvider file
        AuthUserFile /var/www/.ht_webshare
        <LimitExcept OPTIONS>
        require valid-user
        </LimitExcept>
        BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully
    </Location>
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7306
Location: Germany, Next to Hamburg

PostPosted: Sat 14 Jul '12 11:39    Post subject: Reply with quote

Well I'm a bit further! by adding DirectorySlash Off I can connect now, but I can read only files :-/ When I try to update a file or upload a new one, I get the file system error 65535. Any clue?
Back to top


Reply to topic   Topic: WebDAV with Windows XP and 7 View previous topic :: View next topic
Post new topic   Forum Index -> Apache