in reply to Re^2: CGI script calling a perl script
in thread CGI script calling a perl script
should at least get the HTML out to the web server. It won't solve the problem of the CGI script not exiting and thus not sending an EOF to the browser though, so the browser will keep showing "page loading". Maybe you can close STDOUT before exiting?use IO::Handle; STDOUT->autoflush(1);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: CGI script calling a perl script
by Anonymous Monk on Apr 24, 2013 at 20:44 UTC |