Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
30 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
23 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?
0
votes
0answers
22 views

IIS 7.5 returning 403 in WebDAV PROPFIND request

I am configuring an IIS 7.5 server for WebDAV. When the client application issues a anonymous PROPFIND request to read the directory contents, the server returns a 403 Forbidden status. I need it to ...
1
vote
1answer
19 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
35 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
124 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
32 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
154 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
20 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 ...
0
votes
1answer
63 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 ...
0
votes
2answers
208 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 ...
1
vote
2answers
125 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
4answers
140 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 ...
0
votes
0answers
32 views

How scalable is SVN's WebDAV functionality?

I have been investigating ways to add version control to a networked file-store whilst keeping it "looking like" a Windows SMB share. I have read this book excerpt that explains implementing a ...
0
votes
0answers
66 views

RESTful app with apache, webDAV and htaccess

I'm trying to set up a RESTful web service on my apache localhost. After debugging for a while I finally set up webDAV, got authentication sorted and got my 405 error to turn into a 403. Now, on ...
1
vote
0answers
109 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 ...
0
votes
0answers
88 views

Rewrite rule conversion to NginX

I am trying to login to my WebDav folder of my owncloud.org installation, but it's not working from my iphone (webdav navigator) or windows (mini redirector). Authentication with the sabredav script ...
0
votes
0answers
115 views

“Map network drive” Apache WebDAV folder without directory listing

I'm trying to create a webdav share on Apache which, when mounted in Windows using 'Map Network Drive', allows users to get and put specific named files, but not list any other files or directories. ...
0
votes
1answer
214 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 ...
0
votes
2answers
148 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 ...
2
votes
1answer
39 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 ...
0
votes
0answers
219 views

Upload exe and dll files in Explorer View In SharePoint 2010

I can't seem to get copying of dll/exe files working in explorer view in SharePoint 2010. I have Removed all blocked file extensions in Central Administration Edited requestFiltering section of the ...
0
votes
1answer
67 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 ...
0
votes
1answer
92 views

Configure a webdav directory outside apache2 document root?

My team has a web application running on apache2 that allows us to download and upload files. The document root is /var/www/html. Obviously we don't want anybody to see our work papers, so we ...
0
votes
0answers
39 views

Is there a known template for supporting popular document management systems in a web application?

We've created a free to use web application and we're now looking at how to go beyond just a stand alone application and integrate it more with the typical document management systems (DMS) that ...
2
votes
1answer
251 views

PROPFIND requests from a Microsoft-WebDAV-MiniRedir/6.0.6002 user agent on Apache server where Samba is also running

Ok, here is the context. We've a server which is inside our network; on the server there is a Samba configured, providing access to a number of shares; there is also and Apache server providing other ...
1
vote
0answers
60 views

IIS configuration to publish files

I have a web service that will save a file that will be published externally through IIS. The idea was to use Webdav to save the file, but that would mean that the file could be altered externally as ...
0
votes
0answers
107 views

WebDAV system with post-upload hooks on Apache Httpd

Is there a way to run a script (or other executable) on a Linux server, triggered by a file upload to an Apache Httpd server via WebDAV (or at least something that can understand HTTP PUT)? In ...
1
vote
0answers
101 views

Why there are only PROPFIND lines in these IIS 6 WebDAV server logs

I've built an application using Adobe's Livecycle Collaboration Services, which puts and gets session recordings (basically, ZIP files) to my WebDAV server. Adobe servers are able to upload the ...
1
vote
2answers
111 views

Filename Case issue with over WebDav

We are accessing SAMBA shared directory from a Windows Client with WebDav client WebDrive. But we are having the issue that it is showing same contents in both the directories ( data/ & Data/ ) ...
0
votes
2answers
355 views

Could not open the lock database - Apache WebDAV setup

I configured a WebDAV server using Apache. Here is my configuration: DAVLockDB /var/www/DAVLock.db <Location /majid> AllowOverride None Options +Indexes DAV On AuthUserFile ...
0
votes
1answer
211 views

Connecting to office 365 shared document library via webdav on OSX

I think pretty much what I need is in the title. I'm looking for one person who's managed to do that, and how. I would appreciate it. I tried Cyber Duck, and it let me down
0
votes
0answers
224 views

Problems with Web Shared Folder in Windows Server 2008 R2 (IIS 7.5)

First of all, good day/evening! I am dealing with a problem and would appreciate if someone could help, for I have found no specific guides for it in the web (at least none that actually worked...). ...
0
votes
1answer
72 views

Git push corrupting DavLockDB on git push over http

I have a git over http using apache+webdav, autenticating on a ldap directory. It is working ok for most users, but since last friday (FUN FUN FUN!!! just kidding), when one particular client tries ...
0
votes
1answer
153 views

Setup apache2 WebDAV to work on user directories with correct permissions

I am going to give an extra access for users on the Linux box to their files through WebDav using apache2 and dav, dav_fs modules. But found that all files are created by web server owner. Is it ...
0
votes
1answer
357 views

Safe to rsync or cp or mv files to webdav?

I've got an Apache webdav directory serving files to clients read-only. Clients are limited to get,propfind and options. Is it 'safe' to populate this directory using native OS commands like rsync, ...
0
votes
1answer
135 views

Sharepoint Webdav Performance

I am running a Netgate M1n1wall on our small office Comcast Business connection. When I connect to Sharepoint via Webdav remotely, the performance is really slow, e.g. it takes 15-20 seconds for the ...
0
votes
0answers
160 views

mac client on webdav server iis 7.5 - ntlm problem

I'm setting up a webdav file server on a windows 2008 r2 (IIS 7.5). I can use http only, as https is already in use by a specific software running on it proprietary web server that will not 'share' ...
3
votes
2answers
97 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 ...
1
vote
0answers
105 views

Webdav share (SharePoint) modification date gets updated when selecting/clicking a file

In a SharePoint document library there is a option to open the library as webdav share with Windows Explorer. When I am browsing the webdav share and I select a file (not opening it or anything, just ...
2
votes
1answer
118 views

WebDAV / website with LDAP permissions

In IIS, (virtual) folder permissions can be set to NTFS ACLs on the folder so that filesystem permissions become prominent on the web. In that way it becomes relatively trivial to set up a site where ...
0
votes
2answers
518 views

configure apache/webdav readonly for user x, read/write for user y

I'm using Apache 2.2 on RHEL 6.x. I can get webdav setup as readonly for user x or readwrite for user x but can't figure out how to make it read only for user x and read/write for user y. I just have ...
2
votes
4answers
202 views

Is Samba the right choice for me?

we have a distributed application which uses large amounts of content (all kind of files). There are several servers that need to access the content. Right now the content is stored on each server ...
2
votes
2answers
886 views

Apache and per-user WebDAV DocumentRoot

I have a WebDAV user set up that currently gets usernames and passwords from my MySQL Database. I give users the option to use WebDAV for large file uploads (this is for a file sharing service I'm ...
0
votes
2answers
2k 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.
0
votes
2answers
176 views

Allow Directory Listing for SVN WebDav

I've got a couple local repositories that I can successfully access using Apache WebDav. This apache is also a production webserver and I've got directory listings disabled globally. Here's the ...
1
vote
1answer
286 views

WebDav mirroring with Apache/Nginx

Folks, I have an "origin" server where data is being dumped using WebDav. I need to distribute this data to edge caches as soon as the data is received on the origin. I will use either Apache or Nginx ...
3
votes
1answer
124 views

Webdav mounting on XP

I have an SSL tunnel application which transmits data from port 80 to 443 (sets up port 80 as local server and reads/write received data to HTTPS). I can mount this application in Windows 7 or ...
0
votes
2answers
215 views

Subversion on Ubuntu with multiple repositories and separate commits

When I first set up SVN on my server, I opted for the WebDAV http://... access method. However, I could not find out how to enable multiple repositories with this configuration. With this method, any ...
0
votes
0answers
59 views

See Explicit Commands as GNOME VFS Does Them

I am aware of gvfs-mount -l and gvfs-mount -l -i, no thanks to their extensively non-existent man pages, but how would I query to determine the exact parameters the GNOME VFS uses to say, mount a ...

1 2 3 4