Noah Kantrowitz wrote: > What frontend are you using? If it is mod_python, make sure that each > env is in a different interpreter, ... which is something we advise _not_ to do if you're using Subversion, as this triggers a crash (see http://trac.edgewall.org/ticket/3455).
On Sep 12, 2006, at 3:22 AM, Michael Bösendorfer wrote: > > We have got one server with 3 different projects. There are some > > strange things happening which I don't understand. > > > > I've extended a plugin for one of these projects and copied it into > > the local plugin directory. > > > > After a restart of the apache service the extended plugin is > > enabled but for both projects, altough I copied it into the local > > plugin directory. > > After another restart the old plugin is loaded for both of the > > project. > > Another restart and the extended plugin is again enabled for both ... > > and so on ... > > > > How is it possible, that the extended plugin also effects the 2nd > > project and why changes both after a restart of the service. > > The problem is that it's the first version of the plugin to be loaded, (depending on which environment is accessed first), which becomes active for all environments, because as Noah pointed out, they're using the same interpreter. A workaround could be to rename one of your plugin, so that they can be both loaded by the same interpreter. -- Christian --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users -~----------~----~----~----~------~----~------~--~---
