I believe with Ubuntu the eggs are stored in: /usr/local/lib/python2.6/dist-packages or /usr/lib/python2.6/dist-packages (not site-packages with normal python ./setup.py install)
If in doubt you could always try running python directly (just type python at your shell prompt) and enter in the command: import <name of plugin> print myplugin.__file__ TracAnnouncer for example on my machine in a svn developers non- installed state: import announcerplugin print announcerplugin.__file__ returns: /home/milljm/dev/DEV-Trac/downloads/announcer/0.11/announcerplugin/ __init__.pyc Once you have the "exact" location, you can start messing with permissions and the like (if that is indeed the issue). However, if python errors out with un-able to find said module (plugin), then you have a different issue... The module is just not installed correctly as of yet. Or at the very least, in a location python does not know about. You do seem to have trac installed correctly though, so I would start a python shell and do the following: import trac print.trac.__file__ and see where the Trac egg is. In most if not all cases, the plugin eggs should be located in the same spot. Looking forward to your results! Jason On May 3, 12:03 pm, "Alejandro V." <[email protected]> wrote: > Oh ok, the url is only /about in my case, but yes I do not see any > plugins, but it also doesn't look like my plugins_dir is set for > whatever reason. > Setting it doesn't seem to do anything either though. > > On May 3, 1:57 pm, "Jeff Watson" <[email protected]> wrote: > > > > > Sorry, just login to the website (I presume you can since you indicate you > > can get in the admin panel to see the plug-ins, so in general the site is > > alive) and click on the "About Trac" link. That should have been > > localhost:<tracd-port>/trac/<trac-project-folder-name>/about (so in my case > > it'shttp://localhost:8080/trac/risks/about)- Hide quoted text - > > - Show quoted text - -- 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?hl=en.
