The dav tag has no wiki summary.
2
votes
0answers
20 views
Nginx webdav is not showing files/folders with square brackets
I have Nginx with WebDAV module working and everything is right, except the files or the folders that contains any square brackets ] or [. That files/folder are never showed in the list.
I never had ...
0
votes
1answer
87 views
207 Multi-status response jQuery error with digest auth only works in incognito
On an nginx+php-fpm server I am running a carddav server and client based on SabreDAV and jQuery respectively. I can normally login but with one exception. After some time, and possibly due to a ...
1
vote
3answers
303 views
Redmine and Subversion
i'm getting mad trying to configure redmine to use my subversion repository..
i've modified the configuration.yml file so that it calls:
scm_subversion_command: svn
And also tried to use full path ...
2
votes
1answer
2k views
SVN Error E175002
While trying to checkout code from a repository online I got the following Error
E175002: REPORT of '/repos/xxx/!svn/vcc/default'
I am trying to checkout the code from a remote computer
0
votes
0answers
44 views
Change file ownership Apache SVN DAV
I'm currently fighting with an Apache DAV set-up for SVN. In principle all is well and working, however I keep fighting with the DAV module over the owner/group of the created files.
By default this ...
-1
votes
1answer
640 views
nginx webdav server with auth request [closed]
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 ...
0
votes
0answers
110 views
Sabredav authentication
I just installed SabreDav. I already have my user management system with a database. So I would like to add SabreDav using my existing database. This is the page that I have seen:
SabreDav ...
1
vote
1answer
354 views
How can I upload files to Office365 SharePoint with Perl?
Can someone please advise on uploading files to Office365 SharePoint?
I believe this should be done using the DAV protocol, so HTTP::DAV should be right library for that, but how to code it to make ...
0
votes
0answers
81 views
Sabredav refreshing in windows explorer
I am playing around with the SabreDAV framework on a linux server. With the sample code from the project home page, I can mount the exported folder fine but I am experiencing some strange behaviour ...
1
vote
1answer
2k views
configuring svn server on apache on ubuntu 12.04
I'm trying to access an existing subversion server over http.
my dav_svn.conf file looks like:
<Location /svn>
DAV svn
SVNParentPath /home/svn/repos
SVNListParentPath on ...
1
vote
0answers
268 views
Separate group for contacts synced via CardDAV server in iOS address book
I'm working on a CardDAV server (based on SabreDAV) that will be used to synchronize contacts from only one group.
I successfully added my CardDAV account to the iOS settings. My CardDAV server adds ...
4
votes
1answer
311 views
SabreDAV for .NET?
Is there a CardDAV/CalDAV server framework similar to SabreDAV available for .NET?
I have a WCF REST service written in C# and I'm wondering how hard would it be to expose my calendar and contacts ...
0
votes
1answer
250 views
Apache web server is always sending this response: 500 internal server error at HTTP POST
I am getting this error on an existing server. No configuration change. Suddenly, it happened. The log shows nothing, except something similar to the following:
10.10.10.11 - - [28/Oct/2011:01:01:08 ...
0
votes
2answers
660 views
Microsoft Office Excel 2007 can't use Hyperlinks on existing documents after move to DAV offsite location
I have a Excel work sheet with a lot of hyperlinks (both to external documents and to other tabs on the same document). We recently moved over to a DAV server to have our files easily available from ...
0
votes
1answer
490 views
How do I give a user only access to a subfolder in my svn-repository (apache2, DAV, SVN)?
I have an existing subversion repository with many subfolders in it. A new person joined my team and i want to give him access to the svn-repository but not at all. He should get access only to one of ...
2
votes
2answers
436 views
Dynamic Apache authentication via PHP
I would like to implement a dynamic authentication process using Apache and PHP.
My current project is break into two parts:
I have a classic LAMP project running, where users already have a ...
3
votes
4answers
5k views
svn: Repository moved temporarily to 'main'; please relocate
I've problem with own svn repository.
It worked yesterday. But I've got an error when I was adding new file today:
svn: Repository moved temporarily to 'main'; please relocate
List of my actions:
...
2
votes
2answers
1k views
Upload file in PHP using DAV Protocol
Can someone please advise on uploading a file using the DAV protocol in PHP? I have had a look around the web and everything seems pretty over-complicated.
I will need to be uploading image files ...
1
vote
1answer
1k views
Git pull not updating, repo inconsistent?
I have a strange problem with git configured using DAV on apache2.
I'll provide more details, if needed, but here is a high-level overview of the problem.
I have 3 clones of a repository:
the bare ...
1
vote
4answers
2k views
How to specify the repository in apache dav svn?
I have the following setup:
<VirtualHost *:80>
ServerName svn.project1.com
<Location />
DAV svn
SVNPath /svn
</Location>
</VirtualHost>
...
1
vote
3answers
1k views
LocationMatch and DAV svn
I am trying to make our subversion repository accessible via multiple URLs. To do so, I was thinking to use the LocationMatch directive. My configuration is:
<Location ~ "/(svn|repository)">
...
1
vote
3answers
1k views
Hyperlink that will open document using DAV protocol?
I have a DAV server (Oracle Portal in this case). If I open word and then enter the DAV URL of a document, I'm correctly prompted for username/password and the document is checked out. I can edit it ...
0
votes
2answers
4k views
How do I read/write as the authenticated user with Apache/WebDAV?
I've set up DAV in apache2, which works great. The thing is, all read/write operations are done with the apache user's credentials. Instead I want to use the HTTP authenticated user's credentials. ...
2
votes
3answers
283 views
Database query representation impersonating file on Windows share?
Is there any way to have something that looks just like a file on a Windows file share but is really a resource served up over HTTP?
For context, I'm working with an old app that can only deal with ...