Ticket #111 (closed defect: fixed)
wsgiapp.py wants QUERY_STRING even when empty - problems with SCGI/Pylons
| Reported by: | Riklaunim | Owned by: | thejimmyg |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | controllers | Version: | 0.9.1 |
| Severity: | normal | Keywords: | |
| Cc: |
Description
I've configured paste (pylons 0.9.2) to use SCGI, I've configured cherokee to use it. Static html files work but when I want to enter any dynamic pylons page I get: http://www.fotosik.pl/pokaz_obrazek/09200a1cd89f80b6.html
in wsgiapp.py There is:
if '_method' in environ['QUERY_STRING'] and req.GET.has_key('_method'):
With this:
if req.GET.has_key('_method'):
pylons/SCGI/cherokee works nicely
Change History
Note: See
TracTickets for help on using
tickets.