Edgewall Software

Changes between Version 44 and Version 45 of TracOnUbuntu


Ignore:
Timestamp:
Jul 10, 2006, 4:33:32 PM (18 years ago)
Author:
mbelly@…
Comment:

Change to the missing VERSION error.

Legend:

Unmodified
Added
Removed
Modified
  • TracOnUbuntu

    v44 v45  
    248248=== Error: cannot find /var/trac/VERSION ===
    249249
     250This can be fixed with the solution above, and allows for multiple projects without re-editing this file:
     251
     252{{{
     253        <Location /trac.cgi>
     254            SetEnv TRAC_ENV "/var/trac"
     255        </Location>
     256}}}
     257
     258to
     259
     260{{{
     261        <Location /trac.cgi>
     262            SetEnv TRAC_ENV_PARENT_DIR "/var/trac"
     263        </Location>
     264}}}
     265
     266If you only have one project, the below solution could also be used.
     267
    250268I had to modify my trac virtualhost from
    251269{{{
     
    260278        </Location>
    261279}}}
    262 to have it function properly
     280to have it function properly.