LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Subversion / Tortoise SVN problem (https://www.linuxquestions.org/questions/linux-software-2/subversion-tortoise-svn-problem-452515/)

outshined 06-07-2006 03:02 PM

Subversion / Tortoise SVN problem
 
I'm running FC5

I cannot checkout my repository from Tortoise SVN
I can via explorer or SmartSVN but Tortoise gives me:

Error PROPFIND request failed on '/svn/project'
Error PROPFIND of '/svn/project' : 301 Moved Permanently (https://fedora)

Here is my subversion.conf file:
Code:

#SSL Authentication with a .htpasswd file
<Location /svn>
  DAV svn
  SVNParentPath /var/www/html/svn
  SVNListParentPath on

  SSLRequireSSL
  AuthType Basic
  AuthName "SVN Authentication"
  AuthUserFile /var/svnusers/.htpasswd
  Require valid-user
</Location>


also I'm trying to validate users via a W2k3 domain controller using:
Code:

#LDAP Authentication attempt
<Location /svn>
  DAV svn
  SVNParentPath /var/www/html/svn

  AuthLDAPUrl ldap://mydomain.net/OU=Users,DC=mydomain,DC=net?sAMAccountName?sub?(objectClass=user)
  AuthLDAPBindDN "mydomain\ldaplookup"
  AuthLDAPBindPassword thepasswordhere
  Require valid-user
  AuthType Basic
</Location>

it isn't working

:scratch:

Regards.

outshined 06-08-2006 12:41 PM

Most probably a path problem...

Full repositories path: /var/www/html/svn had the same name has <Location /svn> and this must not point to a physical path.


All times are GMT -5. The time now is 07:24 PM.