Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
427 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 ...
2
votes
3answers
257 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 ...
1
vote
1answer
82 views

Dynamic Apache authentification via PHP

I would like to implement a dynamic authentification process using Apache and PHP. My current project is break into two parts: 1- I have a classic LAMP project running, where users already have a ...
1
vote
2answers
1k 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: ...
1
vote
1answer
331 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
811 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
4answers
809 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
729 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
1answer
73 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
48 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
68 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 ...
0
votes
2answers
3k 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. ...