Questions tagged [webdav]

Web Distributed Authoring and Versioning is an extension to the HTTP/1.1 protocol that allows clients to perform remote Web content authoring operations.

Web Distributed Authoring and Versioning is an extension to the HTTP/1.1 protocol that allows clients to perform remote Web content authoring operations.

293 questions
2
votes
0 answers

Apache 2.4 and WebDAV on Ubuntu 14.04, files uploading without slash

This issue is similar to Apache 2.4 webdav uploads without slash in filename, but the solution specified there has not worked for me. Basically, I have enabled mod_dav and mod_davfs, but the configuration does not appear to be letting me upload…
2
votes
1 answer

Apache require user does not stop other users from access

I have created a subfolder and wanted to restrict its access to a certain user ("michael_mayer"). # User Michael Mayer Alias /michael_mayer /var/www/webdav/users/michael_mayer DAV On …
tmighty
  • 123
  • 5
2
votes
1 answer

Nginx as a WebDAV server

I want to syncronise some of my applications across my server, because I do not really like to register on every service I use. I am using Nginx now, because I can do much-much more with that than Apache2, but as I see Nginx does not support WebDAV…
balintant
  • 121
  • 4
2
votes
1 answer

A mount of box.com as davfs2 hangs and does not become unstuck

I have mounted box.com on a Ubuntu 11.04 system, and it worked fine. For a day. It is mounted with the davfs2 file system. But after a day it froze, and all shells that try to list or do anything in the parent directory of the mount point…
user1603472
  • 121
  • 2
2
votes
2 answers

Mount WebDAV as drive in Windows 8

I'm trying to mount a WebDAV share as a drive on Windows 8. I've tried setting up WebDAV server on both Windows 2012 and Debian Linux, but both yield the same error when attempting to mount from client. I have verified that the Linux WebDAV works…
Tedd Hansen
  • 674
  • 5
  • 8
  • 17
2
votes
0 answers

Serve an external Webdav resources form IIS

I can connect to an external webdav resource after installing from Windows Server after installing the windows desktop experience witch in turn installs the webdav client. I see the webdav folders and I can access them manually from the server…
Ronnie
  • 173
  • 1
  • 6
2
votes
6 answers

What's the best free WebDav service out there?

Question says it all: there must be one that stands a head-and-shoulders above the rest...which is it? I've got a few bits of software that would like to store syncable data on a WebDav server...
jkp
  • 429
  • 3
  • 7
  • 14
2
votes
0 answers

Outlook, Webdav Calendars, and Internal DNS

I wish I knew a better way to title this problem, so if anyone can think of a more appropriate title, please let me know. I've been banging my head on this problem for a little while, and usually I just work around it, but I felt it was time to ask…
Zell Faze
  • 343
  • 2
  • 5
  • 16
2
votes
1 answer

WebDAV "PROPFIND" exception in IIS due to network share?

We're finding continuous exceptions in our event viewer on our live box to the following exception: Process information: Process ID: 3916 Process name: w3wp.exe Account name: NT AUTHORITY\NETWORK SERVICE Exception information: Exception type:…
mwjackson
  • 29
  • 5
2
votes
1 answer

Webdav rewrite REMOTE_USER allways empty

I am trying to rewrite an url according to the authenticated user. But REMOTE_USER is always empty. Authentication works. I am quite puzzled here... am I missing something? RewriteEngine On RewriteLog "/var/log/httpd/rewrite.log" RewriteLogLevel…
Chris
  • 607
  • 1
  • 7
  • 18
2
votes
1 answer

nginx webdav server with auth request

My nginx.conf: location ~ ^/api/(.*)$ { alias /home/username/apidav/$remote_user/$1; client_body_temp_path /var/www/path/; client_max_body_size 50m; dav_methods PUT DELETE MKCOL;# COPY MOVE; …
ILdar Migranov
  • 123
  • 1
  • 6
2
votes
1 answer

How do I get WebDAV working?

I'm running 2008r2 and have IIS 7 installed along with the necessary WebDAV Publishing roles/features. I can connect internally within my LAN via mapping a network drive, providing credentials, then connecting. Outside my LAN from my home, I cannot…
user113565
2
votes
1 answer

nginx inserting extra characters in Multi-status reply body

Here's the setup. I've got one server running apache/php hosting ownCloud. Among other things, I'm using to do CardDAV contact syncing. In order to make things work with my domain I have an nginx server running on the frontend as a reverse-proxy to…
Jason E
  • 123
  • 1
  • 3
2
votes
1 answer

Windows share through proxy

I have a Windows share and on a different subnet. The users on the user subnet can not see the server subnet, although there is a proxy server in place on the user subnet that can. All web traffic is sent through this proxy server (squid). Is…
jessebs
  • 121
  • 4
2
votes
1 answer

SVN DAV only lists parent directory via HTTP

I'm configuring SVN DAV via Apache2 using the following configuration: DAV svn SVNParentPath C:\svn_repository SVNListParentPath on Allow from all SVNAutoVersioning Off (PS: I already tried…