Upgrading Trac

Beatnik on 2008-03-07T22:44:53

My webserver crashed a couple of weeks ago so I took some time to install a new disk, install Etch from scratch and move all my old stuff to the new installation. On my old machine, I manually compiled Trac but Etch comes with a package. It turns out there are some differences :) TagsWikiModule was giving me problems (as described here). I fixed it by making sure I had

default_handler = WikiModule
again and also had
trac.wiki.web_ui.wikimodule = enabled
I also had the following error:
TracError: Database newer than Trac version
I fixed this by installing SQLite3 and running it on trac.db and applying the following statement:
update system set value = 19 where name = "database_version";
(depending on the current database version.. mine was 20)


Re: Upgrading Trac

mattk on 2008-03-08T00:48:20

The 0.11b is worth checking out, it has an improved workflow system, and plenty of cool new features like AJAX in the source browser. I'm running it on the dev box at $work and it's very nice.