Web Distributed Authoring and Versioning is an extension to the HTTP/1.1 protocol that allows clients to perform remote Web content authoring operations.
0
votes
0answers
344 views
Apache 2.2 WebDAV sharing a Samba mounted directory, Forbidden errors
I'm trying to setup an Apache 2.2.15 WebDAV share for a SMB mount located on another server. There's a good reason why I have to do it this way.
My Samba server is hosting a shared directory without ...
0
votes
0answers
43 views
assistance setting up webdav on windows with apache [closed]
I have recently followed this guide, in an effort to get WebDAV setup and working on my test server.
It hasn't worked, and I was wondering if someone can point me towards a tried and tested guide, or ...
0
votes
0answers
125 views
WebDAV behind a ssl proxy
I have a small vServer and would like to use it as a backup space for some documents. Since I'm behind a proxy at home, the only real option seems to be WebDAV. My provider has a ssl-proxy, that I ...
0
votes
0answers
207 views
Apache2 WebDAV: multiple users with different permissions
I am trying to create a WebDAV share on my OS X 10.7 machine's (The standard OS X, without the OS X Server software) Apache2 implementation. I have currently been successful in creating a ...
2
votes
1answer
812 views
Shared folder mounted on OSX: NFS, WebDAV or AFP?
We are trying to figure out how to best mount a network share on OSX machines (only).
We went with WebDAV initially which does what expected but it's extremely sluggish.
Also the Finder seesm to have ...
1
vote
1answer
617 views
MKCOL 405 and LOCK 500 on git push (error: cannot lock existing info/refs)
I'm having some troubles setting up a Git server with apache.
Here is my gitrepo.conf:
DavLockDB "opt/local/apache2/var/DavLock"
<Directory /opt/local/apache2/htdocs/repo>
DAV On
Deny ...
0
votes
2answers
596 views
Doing two rewrites with apache and rewrite module together with webdav
I'm trying to setup a WebDAV server which uses the username for redirecting to a private DAV directory. In each private directory there's also a folder named SharedFolder.
The idea is that when the ...
1
vote
0answers
155 views
Apache 2.4 webdav uploads without slash in filename
I have webdav running on apache 2.4.2 on Ubuntu 10.04 LTS
virtual host config:
ServerAdmin test@test.com
ServerName test.com
ServerAlias www.test.com
ErrorLog ...
0
votes
0answers
63 views
Set up new svn user with access to single project
I have several repositories set up on an Ubuntu VPS with the structure:
[pathtosvn]/repos/project_1
[pathtosvn]/repos/project_2
[pathtosvn]/repos/project_3
These repos are accessed via http ...
1
vote
0answers
87 views
How can I setup webdav server using SSL on a Mac (Lion)?
How can I setup webdav server using SSL on a Mac (Lion)?
Thanks in advance!
4
votes
1answer
2k views
Does WebDAV even work on IIS 7? I say nay
AKA "When developers have to be their own sysadmins"
I've tried every configuration from the top 10 stack overflow and server fault results for WebDAV 405 on IIS (for verb PROPFIND and PUT). I'm ...
0
votes
0answers
264 views
mount an hard disk as www-data (for webDAV), access it with the normal user
on my little Linux box (Ubuntu 12.04), I got an hard disk auto-mounted on /mnt/storage (relevant /etc/fstab line here):
#/dev/sdc1
UUID=49707dae-90a7-4c67-9a46-a156980db4ab /mnt/storage ext3 ...
0
votes
1answer
390 views
Get WebDav uploading progress and status (Linux, davfs2)
I am using WebDAV on Linux box with davfs2 1.4.6. When I copy a file to a mounted WebDAV service, it is goes rather fast, just like a regular local drive operation. And it actually is, because the ...
-5
votes
3answers
107 views
Need to Transfer 390 GB of Data from Linux Server to Windows Machine [closed]
We want to transfer 300+ GB of data from a Linux Server to a WIndows Server.
Can we use rsync (and if so, how would we?) to copy the files from the linux server to the windows file share?
Or should ...
1
vote
1answer
714 views
nginx public webdav server
Can you check the user group from a $remote_user?
location ~ ^/dav/(.*)$ {
alias /home/$remote_user/$1;
auth_pam "Restricted";
auth_pam_service_name "nginx";
dav_methods PUT DELETE ...
2
votes
1answer
1k views
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 ...
2
votes
1answer
268 views
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 ...
2
votes
2answers
683 views
Mac WebDAV Connection Read-Only Issue on Windows Server 2008 WebDAV Folder
I set up Windows Server 2008 (x64) and installed the WebDAV extension to IIS 7 (also x64) and created a WebDAV share. I also created a self-signed certificate and enabled HTTPS on the box - requiring ...
1
vote
0answers
188 views
WebDav returns error 405 on IIS 7.5 and OS Win2k8
I have configured a WebDav application on IIS 7.5 with OS Win2k8.
I created a local user of Server machine.
But When i try to upload a file using my WebDav application it gives me error 405.
I set ...
2
votes
2answers
272 views
Remotely copying files from WebDAV server?
My iDisk is about to expire, and I can access it through the WebDAV protocol. I own my own server, and I know it's possible to access my iDisk through WebDAV.
I was wondering how I would go about ...
0
votes
2answers
758 views
mounting webdav as user (no sudo)
With FUSE it is possible to mount many things purely as a non privileged user. However, it seems that for webdav davfs2 is the preferred project, which appears to be a filesystem driver and uses the ...
2
votes
2answers
160 views
WebDAV Security and Hardening
What are the security ramifications that one should be aware of when considering using WebDAV? How does one go about securing it? What else should I know about it?
2
votes
1answer
75 views
files from subversion repo mounted as DAV, get zeroed out shortly after writing
I have a subversion repo with
"SVNAutoversioning on"
which usually allows webDAV clients to make changes to files without a checkout-edit-commit cycle, and this works well for some subset of the ...
1
vote
1answer
84 views
SVN DAV only lists parent directory via HTTP
I'm configuring SVN DAV via Apache2 using the following configuration:
<Location /svn/>
DAV svn
SVNParentPath C:\svn_repository
SVNListParentPath on
Allow from all
...
2
votes
1answer
125 views
Using a MySQL users table in subversion
I'm currently starting to work for the first time on setting up a small ubuntu server that has mysql and subversion. I have never set up a server before and I am doing it for a professor. Currently I ...
0
votes
3answers
690 views
Sync local folder with WebDAV
I have a local folder on my Mac that I want to sync with a WebDAV server.
There are a lot of files in my folder. After I edit some files or add/remove folders, I want to be able to sync the changes ...
0
votes
1answer
73 views
Using WebDAV for automated downloads
I currently manage a number of sites (at one point about a dozen, currently four, but soon growing into the dozens or hundreds) that serve a piece of software to clients at their remote locations. Our ...
1
vote
1answer
600 views
WebDAV through Apache2 permissions/missing files
I have a WebDAV setup on Apache2 on a server running Debian 5.0 (Lenny), which I am accessing through a mapped network drive under Windows 7.
The setup appears to run fine, I receive no permission ...
1
vote
2answers
325 views
SSL on Apache seems to significantly affect WebDAV performace
I'm using Apache 2.2 running on Windows Server 2008 R2 as a WebDAV server for clients to upload large media files (roughly 100-2000MB). I am finding that when I have SSL enabled (openSSL 0.9.8o) and ...
1
vote
1answer
739 views
Office documents on intranet all requiring second login and can't pass auth? Disable webdav?
I am not sure what is going on, but recently all the Office documents on our intranet get prompted a second time for login and according to the error logs it looks like it's trying to use webdav to ...
1
vote
1answer
1k views
The backup destination specified by the remote shared folder does not exist
I have a webdav share which I mount to my windows 2008 r2 server via webdav (desktop experience feature).
Is it possible to backup to this? I get the error:
Windows server backu is unable to access ...
2
votes
1answer
61 views
Apache 2 WebDAV, server trash folder?
I've just started experimenting with WebDAV under Apache 2.2 on CentOS 5. It works well although the Windows WebDAV client is clunky and nowhere near as seamless as it should be.
When a user deletes ...
1
vote
2answers
726 views
from svn to git (+ LDAP + password-less updates + passworded access control)
We have an SVN setup and there are some things we dislike about it and some things we like about it. We want to move to git, but we're not sure exactly what setup will work for us. We're currently ...
0
votes
1answer
256 views
Apache override in sub-location
This is my Apache vHost-configuration:
<VirtualHost subversion.domain.com:80>
ServerAdmin changed@domain.com
ServerName servername.domain.com
Documentroot /srv/www/htdocs/svn
...
1
vote
4answers
574 views
Run FTP server on port 80 along with web traffic
I have IIS running two sites + IIS virtual folders (w3root) on a win 2k3 server. I wondered if there were any way to also piggyback FTP traffic on that pipe by using port 80 on the ftp server.
How ...
2
votes
3answers
434 views
using ftp or webdav?
if i want to mount remote folders in my mac and use them as a local one, should i use webdav over ftp?
basically, i have read that webdav is better than ftp (old protocol).
does this mean that i ...
3
votes
2answers
206 views
Windows is unable to remember login credentials for DAV network share
I have a WebDAV server running on a linux server through Apache, which I am then attempting to map on a windows machine.
The mapping works fine, I provide my credentials and it logs me in, but the ...
0
votes
2answers
753 views
svn post-commit not performing
ive been sitting on this for about 7 hours, and ive aged close to 7 years... ahhh, server admin does that to me.
i have svn wired through apache2 with webdav in the usual manner (basically like ...
0
votes
2answers
720 views
Is there away to get around shared folder resource limits?
We have a situation where we need to share out a shared folder on a PC running WinXP to more than 10 users. Apparently there is a limit to the number of connections for a shared folder(?).
To add a ...
3
votes
3answers
1k views
How can I upload/download or modify .htaccess files using WebDAV?
I've set up a Ubuntu server with Apache 2. Instead of FTP I'm using WebDAV upload/download files. Works great. But it is not possible to upload/download or modify .htaccess files, because the Apache ...
0
votes
1answer
877 views
Hosting a subversion working copy in an remote WebDAV folder
This might be a bit awkward, but I'll try to explain what I am trying to achieve and what problems I encountered. First of all: whats this about?
I am currently trying to set up a distributed working ...
1
vote
0answers
245 views
WebDAV user permissions on a per file basis
My team and I are building a webDAV server using Apache 2.2.
We have run into an issue with user permissions. We have it currently set up so that user permissions work for folders on the server but ...
1
vote
4answers
9k views
Any way to map WebDAV with SSL as network drive in Windows XP?
I'm trying to map WebDAV with SSL as a network drive in Windows XP. (I've been at this for several hours) I can read the share just fine using a browser and with Network Places, but it refuses to ...
0
votes
2answers
3k views
Enable WebDAV File Sharing in Mac OS X Lion Server
Has anyone been able to turn on the iOS document sharing in OS X Lion Server? I can't connect to the file share using WebDAV.
2
votes
2answers
2k views
How to hide files in Apache 2.2 WebDAV Directory listings
I use Apache 2.2 as WebDAV file server to a bunch of Mac and MS Windows clients. Unfortunately both clutter the filesystem with files like .DS_Store or thumbs.db.
Since hte files distract my users i ...
0
votes
2answers
300 views
IIS7 WebDAV Browsing
I'm creating Virtual Directories in IIS7 so that external people can browse various documents.
It's all looking good, except the browsing is in a dull text format. How can I create more of a "Windows ...
0
votes
2answers
557 views
xcopy to WebDAV drive gives directory not empty error
I am trying to synchronize two folders. I am trying to synch a WebDAV mapped drive folder (Z:\Images) with a folder on a hard drive on my local computer (E:).
Here is the command I am running:
xcopy ...
0
votes
1answer
300 views
Browse git repository over Webdav (debian)
I would like to be able to browse a (bare) git repository over Webdav.
Note that I do not want to be able to push/pull over Webdav. Instead, I actually want to be able to browse through my files via ...
3
votes
1answer
1k views
Apache dav modules produce cadaver: Could not access / (not WebDAV-enabled?)
I installed apache then I am able to access the default page from the command line:
$ wget http://127.0.1.1
Using webmin in web browser:
https://localhost:10000/
Servers>Apache ...
0
votes
1answer
225 views
Trouble enabling webdav support with Windows Web Server 2008
I have a Windows Server Web 2008 SP2. I am trying to connect to a webdav server (https) and copy some files from this server.
Mapping the network drive, or copying a file via Powershell, works fine ...