On Wednesday, November 13, 2013 9:21:11 AM UTC-8, Matheus Santana wrote: > Hi guys, > > I need to migrate a trac enviroment that I inherit from version 0.12dev to > a new server with 0.12.5. The situation is like this: > > *We have serveral projects and there is a master trac project to allow the > multiple repositories feature - all in the following path: > /var/repositories/trac > > *Each time the user access http://192.168.1.110/projects/clientA for > instance, TRAC should load the apropriate clientA > files(/var/repositories/trac/clientA/conf/trac.ini for example). > > > The problem is that the new 0.12.5 installation fails with: > > > > > > > > > > > > > > > > > > > > > > > > > > > > *AttributeError: Cannot find an implementation of the "IRequestHandler" > interface named "TracForgeIndexModule". Please update the option > trac.default_handler in trac.ini.Python TracebackMost recent call > last:Traceback (most recent call last): File > "/usr/lib/python2.7/dist-packages/trac/web/main.py", line 522, in > _dispatch_request dispatcher.dispatch(req) File > "/usr/lib/python2.7/dist-packages/trac/web/main.py", line 204, in > dispatch chosen_handler = self.default_handler File > "/usr/lib/python2.7/dist-packages/trac/config.py", line 648, in __get__ > self.section, self.name <http://self.name>))AttributeError: Cannot find an > implementation of the "IRequestHandler" interface named > "TracForgeIndexModule". Please update the option trac.default_handler in > trac.ini.System Information:Trac 0.12.5Babel 0.9.6Docutils > 0.8.1Genshi 0.6 (with speedups)mod_python 3.3.1Pygments > 1.5pysqlite 2.6.0Python 2.7.3 (default, Jan 2 2013, 14:09:21) [GCC > 4.7.2]pytz 2012csetuptools 0.6SQLite 3.7.13Subversion 1.8.4 > (r1534716)* > > > > I have tried to install tracforge from > http://trac-hacks.org/wiki/TracForgePlugin and got the following message: > > ~/tracforgeplugin/0.11# python setup.py > DO NOT USE THIS CODE YET. > > I think that there is a 0.11 requirement... > > > Someone have any idea what is the problem? I really need some help here > :///. > > Thanks! >
You probably want to avoid using TracForgePlugin, and set default_handler back to its default. Edit the [trac] section of trac.ini with: default_handler = WikiModule http://trac.edgewall.org/wiki/TracIni#trac-section -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/trac-users. For more options, visit https://groups.google.com/groups/opt_out.
