#4355 closed defect (fixed)
does not show up after activation
Reported by: | anonymous | Owned by: | Martin Scharrer |
---|---|---|---|
Priority: | normal | Component: | ServerSideRedirectPlugin |
Severity: | blocker | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
the plugin does not show up to activate in the plugins list, webadmin. trac version 0.11.2.1, python-2.5.
the extracturlplugin is activated.
Attachments (0)
Change History (7)
comment:1 Changed 16 years ago by
comment:2 Changed 16 years ago by
Status: | new → assigned |
---|
comment:3 follow-up: 5 Changed 16 years ago by
doesn't work for me either - in the log it says:
Trac[loader] ERROR: Skipping "tracserversideredirect.plugin = tracserversideredirect.plugin": (can't import "No module named tracexample")
in your init.py you are doing:
from tracexample import *
which isn't on my system so far as I can tell...
comment:4 Changed 16 years ago by
So yeah, I'd either rename plugin.py to tracexample.py or change the import to:
from plugin import *
and that should fix it...
Cheers!,
-- Carl
comment:6 Changed 16 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
No confirmation nor any new complaints in the last two weeks. I'm closing this ticket now as fixed. Feel free to reopen it if it still doesn't work as expected.
Can you please enable a DEBUG level log file and check if it contains a message that the plugin got loaded. Did you tried if it's working even while not showing up?