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

Re: Snow Leopard 10.6.7 showing wrong version on http://myserver/svn page

From: davmar <david_at_icovfx.com>
Date: Sat, 25 Jun 2011 20:09:11 -0700 (PDT)

This is what I get when grep for dav or svn in the httpd.conf:

bash-3.2$ cat httpd.conf | grep dav
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule dav_svn_module modules/mod_dav_svn.so
Include conf/extra/httpd-dav.conf

bash-3.2$ cat httpd.conf | grep svn
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so

This the conf/extra/httpd-dav.conf, which I have not modified:

bash-3.2$ cat httpd-dav.conf
#
# Distributed authoring and versioning (WebDAV)
#
# Required modules: mod_dav, mod_dav_fs, mod_setenvif, mod_alias
# mod_auth_digest, mod_authn_file
#

# The following example gives DAV write access to a directory called
# "uploads" under the ServerRoot directory.
#
# The User/Group specified in httpd.conf needs to have write permissions
# on the directory where the DavLockDB is placed and on any directory where
# "Dav On" is specified.

DavLockDB "/opt/local/apache2/var/DavLock"

Alias /uploads "/opt/local/apache2/uploads"

<Directory "/opt/local/apache2/uploads">
    Dav On

    Order Allow,Deny
    Allow from all

    AuthType Digest
    AuthName DAV-upload

    # You can use the htdigest program to create the password database:
    # htdigest -c "/opt/local/apache2/user.passwd" DAV-upload admin
    AuthUserFile "/opt/local/apache2/user.passwd"
    AuthDigestProvider file

    # Allow universal read-access, but writes are restricted
    # to the admin user.
    <LimitExcept GET OPTIONS>
        require user admin
    </LimitExcept>
</Directory>

#
# The following directives disable redirects on non-GET requests for
# a directory that does not include the trailing slash. This fixes a
# problem with several clients that do not appropriately handle
# redirects for folders with DAV methods.
#
BrowserMatch "Microsoft Data Access Internet Publishing Provider"
redirect-carefully
BrowserMatch "MS FrontPage" redirect-carefully
BrowserMatch "^WebDrive" redirect-carefully
BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully
BrowserMatch "^gnome-vfs/1.0" redirect-carefully
BrowserMatch "^XML Spy" redirect-carefully
BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully

Ryan Schmidt-80 wrote:
>
> On Jun 25, 2011, at 21:34, davmar wrote:
>
>> I copied the entire httpd.conf from the Apple Apache2 into the MacPorts
>> Apache2 instead of just editing it. So I am now have the MacPorts apache2
>> running but when typing in http://myserver/svn , I am not getting the svn
>> page.
>
> What are you getting instead?
>
>> I have loaded the dav_svn_module and the authz_svn_module by editing the
>> httpd.conf, the other modules were already being loaded.
>>
>> The syntax check , checks out ok now, but still no svn page happening.
>
> Show the Subversion-related portions of your httpd.conf file.
>
>
>
>
>
>

-- 
View this message in context: http://old.nabble.com/Snow-Leopard-10.6.7-showing-wrong-version-on-http%3A--myserver-svn-page-tp31927810p31929253.html
Sent from the Subversion Users mailing list archive at Nabble.com.
Received on 2011-06-26 05:09:51 CEST

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.