[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Could not open the requested SVN filesystem

From: prog prog <prog101_at_gmail.com>
Date: 2007-02-16 01:58:10 CET

Hello,

I have a similar problem to the following thread,
http://svn.haxx.se/users/archive-2007-01/0513.shtml

but I am unable to access svn though https

I have imported 1 test file to the repository and shows up using SVN list:
svn import test file:///home/prog101/svn/test -m "testing"
svn list file:///home/prog101/svn

but the following error shows up on executing
svn list https://prog101.edu/svn

svn: PROPFIND request failed on '/svn'
svn: Could not open the requested SVN filesystem

here's my /etc/apache2/mods-available/dav_svn.conf

# dav_svn.conf - Example Subversion/Apache configuration
#
# For details and further options see the Apache user manual.

# <Location URL> ... </Location>
# URL controls how the repository appears to the outside world.
# In this example clients access the repository as http://hostname/svn/repos
<Location /svn>

  # uncomment this to enable the repository
   DAV svn

  # set this to the path to your repository
  # SVNPath /var/lib/svn
  SVNPath /home/prog101/svn

  # The following allows for basic http authentication. Basic
authentication
  # should not be considered secure for any particularly rigorous definition
of
  # secure.

  # to create a passwd file
  # # rm -f /etc/apache2/dav_svn.passwd
  # # htpasswd2 -c /etc/apache2/dav_svn.passwd dwhedon
  # New password:
  # Re-type new password:
  # Adding password for user dwhedon
  # #

  # Uncomment the following 3 lines to enable Basic Authentication
  AuthType Basic
  AuthName "Subversion Repository"
  AuthUserFile /etc/apache2/dav_svn.passwd

  # Uncomment the following line to enable Authz Authentication
  # AuthzSVNAccessFile /etc/apache2/dav_svn.authz

  # Uncomment the following three lines allow anonymous read, but make
  # committers authenticate themselves

  <LimitExcept GET PROPFIND OPTIONS REPORT>
  Require valid-user
  </LimitExcept>

</Location>

I am running ubuntu dapper and have set up apache + subversion + ssl using
the following URL:
http://www.ubuntuforums.org/showthread.php?t=51753

Any help will be appreciated!

Thank you.
Received on Fri Feb 16 01:59:06 2007

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.