Changes between Version 5 and Version 6 of Trac


Ignore:
Timestamp:
03/06/13 09:27:19 (11 years ago)
Author:
Nick Holden
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Trac

    v5 v6  
    2626
    2727There is a Trac module for storing passwords in a database, which should makes managing user accounts and passwords a lot easier. We should consider whether we need to install this before we issue passwords to the hospital staff. Depends how many people need write access.
     28
     29== Migration ==
     30
     31Getting trac to work on lcbru-trac.rcs.le.ac.uk (which is an alias for the public interface of lamp-51, was something of a pain.
     32
     33Partly because we have to use a virtualenv to install python, partly for permission issues.
     34
     35What made the difference in the end was to get the wsgi to run with the same virtualenv as I had used to install trac from the command line, by inserting the following two lines in the /local/trac-deploy/cgi-bin/trac.wsgi :
     36
     37{{{
     38activate_this = os.path.expanduser("/local/python/virtualenv/bin/activate_this.py")
     39execfile(activate_this, dict(__file__=activate_this))
     40}}}
     41