Edgewall Software

Changes between Initial Version and Version 1 of Ticket #1287


Ignore:
Timestamp:
Mar 11, 2005, 7:14:14 PM (19 years ago)
Author:
Christopher Lenz
Comment:

Well, of course you have to adjust the provided examples to your specific setup.

I don't know why your TRAC_ENV has a .db ending, it should a normal directory, not a database file.

I also don't actually believe that using /projects/ as URL for the static files (images, CSS, etc) will work correctly unless you also have made some other changes. /trac/ in the examples is for the static files, /projects/ is for the dynamic stuff.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1287

    • Property Keywords documentation install added
    • Property Status newclosed
    • Property Resolutioninvalid
  • Ticket #1287 – Description

    initial v1  
    11I am using the 0.8.1 version on Windows 2000 with Apache. I followed the instructions on TracMultipleProjects, but didn’t worked until I changed this:
    2 RewriteRule ^/projects/([[:alnum:]]+)(/?.*)     /projects/trac.cgi$2 [S=1,E=TRAC_ENV:c:/svn/$1]
     2
     3{{{
     4RewriteRule ^/projects/([[:alnum:]]+)(/?.*) \
     5            /projects/trac.cgi$2 [S=1,E=TRAC_ENV:c:/svn/$1]
     6}}}
    37to this:
    4 RewriteRule ^/projects/([[:alnum:]]+)(/?.*)     /proyectos/trac.cgi$2 [S=1,E=TRAC_ENV:c:/svn/$1.db]
     8{{{
     9RewriteRule ^/projects/([[:alnum:]]+)(/?.*) \
     10            /proyectos/trac.cgi$2 [S=1,E=TRAC_ENV:c:/svn/$1.db]
     11}}}
    512
    613And this:
     14{{{
    715Alias /trac/ "C:/Python23/share/trac/htdocs"
     16}}}
    817to this:
     18{{{
    919Alias /projects/ "C:/Python23/share/trac/htdocs"
     20}}}