Edgewall Software

Changes between Version 60 and Version 61 of TracOnUbuntu


Ignore:
Timestamp:
May 9, 2007, 1:14:44 PM (17 years ago)
Author:
shepting@…
Comment:

Corrected mod_python instructions to include adding <Location> tags to the virtual host file.

Legend:

Unmodified
Added
Removed
Modified
  • TracOnUbuntu

    v60 v61  
    175175
    176176{{{ 
    177 # Uncomment this to enable the repository,
    178 DAV svn
    179 
    180 # Set this to the path to your repository
    181 SVNParentPath /var/lib/svn
    182 }}}
    183 '''Note:''' You must declare SVN''Parent''Path.  The installed .conf files ussually just say SVNPath. You need SVNParentPath or else you will get 'Could not open the requested SVN filesystem' errors.
     177<Location>
     178    # Uncomment this to enable the repository,
     179    DAV svn
     180
     181    # Set this to the path to your repository
     182    SVNParentPath /var/lib/svn
     183</Location>
     184}}}
     185'''Note:''' You must declare SVN''Parent''Path.  The installed .conf files usually just say SVNPath. You need SVNParentPath or else you will get 'Could not open the requested SVN filesystem' errors.
    184186
    185187Now, follow the Subversion setup instructions in Step 4 (just the Subversion setup - you don't have to do the rest). Next,
     
    223225Next, download and install [http://packages.ubuntu.com/dapper/web/trac trac_0.9.3-1ubuntu1_all.deb].  All the necessary dependencies should've been installed when you tried installed trac_0.8.4.
    224226
    225 === SVN ===
    226 
    227 I had to add a <Location> section to the virtual host to make the SVN repository work correctly:
    228 
    229 {{{
    230         <Location /svn>
    231         DAV svn
    232         SVNParentPath /var/lib/svn
    233         </Location>
    234 }}}
    235227
    236228=== Error: cannot find /var/lib/trac/VERSION ===