Modify ↓
Opened 18 years ago
Closed 18 years ago
#912 closed defect (fixed)
enabling Smiley component confuses cgi web server
Reported by: | Owned by: | Christian Boos | |
---|---|---|---|
Priority: | high | Component: | WikiGoodiesPlugin |
Severity: | critical | Keywords: | cgi css |
Cc: | Trac Release: | 0.10 |
Description
When the Smiley component is enabled the CGI webserver rejects files requested by other plugins like e.g. css stylesheet files. This is due to the fact, that their response header starts with a line containing the smileys components location. This line is inserted by the command
print resource_filename(__name__, 'htdocs')
in line 66 of smileys.py . This print command outputs to stdout, which cgi forwards to the web server.
Fix: remove or comment out the respective line
Attachments (0)
Change History (2)
comment:1 Changed 18 years ago by
Status: | new → assigned |
---|
comment:2 Changed 18 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
Woops, sorry for that.