I wrote:
> I've Googled extensively, but can't figure out what might be
> causing my Python CGI app to zombie (yes, Tibia, the one I
> just announced ;).
Never mind for now. I think it was a mistake in my httpd.conf. My
TransferLog didn't pipe to the correct handler, which meant access &
error ev
Erik Max Francis wrote:
> Robert Brewer wrote:
>
> > I've Googled extensively, but can't figure out what might
> be causing my
> > Python CGI app to zombie (yes, Tibia, the one I just
> announced ;). The
> > cgi bit looks like this:
>
> Zombies are caused by forking a subprocess and the parent
Robert Brewer wrote:
I've Googled extensively, but can't figure out what might be causing my
Python CGI app to zombie (yes, Tibia, the one I just announced ;). The
cgi bit looks like this:
Zombies are caused by forking a subprocess and the parent not waiting on
it. Does your system (sometimes) sp
I've Googled extensively, but can't figure out what might be causing my
Python CGI app to zombie (yes, Tibia, the one I just announced ;). The
cgi bit looks like this:
def cgi_handler():
import cgi
form = cgi.FieldStorage(keep_blank_values=True)
params = dict([(key, form[key].val