405 not allowed in reponse to PROPFIND
From: Anderson Smith <tairic_at_hotmail.com>
Date: Wed, 23 Sep 2009 14:59:48 -0400
I'm having a hell of a time getting
Before I installed my SSL and made a virtualhost in /etc/httpd/conf.d/subversion.conf SVN was working remotely, but now that I have that it's not. I'm having trouble debugging it. I thought maybe it was a permissions issue, so I put user apache in a group called svn (I'm running CentOS) and did "chgrp -R apache repos/ && chmod g+rw -R repos/" to no avail, I even tried later to just do "chown -R apache.apache repos/" but still no luck. I'm not quite sure what the problem is and I've tried to detail what I can below, thank you for any help.
https is working, I can
[root_at_localhost tmp]# svn co
A project/main
A project/main/index.php
A project/config
A project/config/nom.php
A project/options
A project/options/options.php
Checked out revision 3.
[root_at_localhost tmp]#
When I commit, I get the following:
Sending config/nom.php
Transmitting file data .
Committed revision 4.
Warning: post-commit hook failed
[root_at_localhost project]#
This is quite the different error, and
#!/bin/bash
/usr/bin/svn update --username=hook
The reason for this is that I need
3. When I attempt to use subversion
svn: Server sent unexpected return
My /etc/httpd/conf.d/subversion.conf is
LoadModule dav_svn_module
LoadModule authz_svn_module
<VirtualHost *:447>
DocumentRoot "/var/www/html"
ServerName 10.1.10.250
SSLEngine on
SSLCipherSuite HIGH:MEDIUM
SSLCertificateFile
SSLCertificateKeyFile
<Location /var/www/svn>
DAV svn
SVNParentPath
AuthzSVNAccessFile
AuthType Basic
AuthName "Subversion
AuthUserFile
Require valid-user
</Location>
ServerAdmin admin_at_example.com
</VirtualHost>
/etc/httpd/conf/httpd.conf is set to
If I change the VirtualHost to be *:80 instead of 447 I get this:
Thanks again
------------------------------------------------------
To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.