Re: CGI::Response.pm

M. Hedlund (hedlund@best.com)
Tue, 28 Nov 1995 14:48:40 -0800 (PST)


On Tue, 28 Nov 1995, Stephen M. Beckstrom-Sternberg wrote:
> I am picking up a several months old thread regarding Response.pm.  That is,
> how can I run a background child process without the WWW browser waiting for
> the child process to terminate?  I successfully fork the process and exit
> the parent after leaving a message, but I can't seem to cause the browser to
> disconnect besides clicking on the Stop button.  I have tried flushing and
> closing STDOUT, STDIN, and STDERR, but without success.

CGI::Response won't support this until v0.04 or 0.05 (currently at 
0.021).  To do it yourself,
	-fork
	-exit the parent
	-close STDOUT, STDERR, STDIN _from the child_
If this isn't working, send me info on which server you're using.

The libwww list might not be the best place to discuss this, since there 
is also a Response.pm module in it.