I'm unable to check-in changes on files that start with a dot
(like .profile).
Example:
kwilson$ svn move :profile .profile
A .profile
D :profile
kwilson$ svn ci -m "Renamed :profile to .profile"
Adding .profile
svn: Commit failed (details follow):
svn: PROPFIND request failed on '/myrepos/myproject/trunk/.profile'
svn: PROPFIND of '/myrepos/myproject/trunk/.profile': 500 Internal
Server Error
The repository is owned by Apache. Operations on non-dot files are fine.
I had thought that modsecurity was stopping it, but I disabled it and no
joy. Here's
the configuration for the virtual host:
ServerName svn.myserver.org
DocumentRoot /usr/local/htdocs
ServerAdmin svnadmin@myserver.org
RewriteEngine On
RewriteRule ^/$ /index.html
RewriteRule ^/index.html$ http://svn.myserver.org/viewcvs [R,L]
<Location /repos>
DAV svn
SVNPath /usr/local/svn-repository/
SVNIndexXSLT /svnindex.xsl
AuthType Basic
AuthName "Subversion repository"
AuthUserFile /usr/local/svn-repository/conf/.htpasswd
<LimitExcept GET PROPFIND OPTIONS REPORT>
Require valid-user
</LimitExcept>
Order Deny,Allow
Deny from All
Allow from 10.0.0.
</Location>
Alias /viewcvs/docs "/usr/local/viewcvs/templates/docroot/"
<Directory "/usr/local/viewcvs/templates/docroot/">
Order Deny,Allow
Allow from All
</Directory>
Alias /viewcvs "/usr/local/viewcvs/www/cgi/viewcvs.cgi"
Alias /query "/usr/local/viewcvs/www/cgi/query.cgi"
<Directory "/usr/local/viewcvs/www/cgi">
AddHandler cgi-script .cgi
Options SymLinksIfOwnerMatch IncludesNoExec ExecCGI
AllowOverride None
Order Deny,Allow
Deny from All
Allow from 10.0.0.
</Directory>
Any ideas?
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Fri Dec 30 23:44:25 2005