Edgewall Software

Changes between Version 47 and Version 48 of TracOnOsx


Ignore:
Timestamp:
May 14, 2006, 11:37:56 AM (18 years ago)
Author:
kurt@…
Comment:

pysqlite2/sqlite3 upgrade instructions

Legend:

Unmodified
Added
Removed
Modified
  • TracOnOsx

    v47 v48  
    1010
    1111If you already have [http://fink.sf.net/ Fink] and are comfortable using it, you may prefer to install Trac that way. But multiple people have noticed that SQLite currently won't install unless you enable [http://fink.sourceforge.net/faq/usage-fink.php?phpLang=en#unstable unstable packages] in Fink; the same goes for the handy trac-py23 or trac-py24 packages mentioned a little later on.
     12
     13'''Warning:''' If you wish to use pysqlite2/sqlite3 you should either create your trac project after installing pysqlite2-py24 or you will need to hand convert your trac project database from sqlite2 to sqlite3.  trac tries to load pysqlite2/sqlite3 in preference to pysqlite/sqlite2.  If your database is sqlite2 and you have pysqlite2/sqlite3, you will get errors about your database being unknown or encrypted.
     14{{{
     15$ mv trac.db trac2.db
     16$ sqlite trac2.db .dump | sqlite3 trac.db
     17}}}
    1218
    1319== Updating Fink ==