S
shurikgefter
Hi,
I run the following script in apache.
-----------------------------------------------------------------------
#!/usr/local/bin/perl
print "Content-type:text/html\n\n";
print "<html><body>";
`/tmp/bin/unpack.pl `;
$comm_status = $?;
if( $comm_status eq "0" ) {
print "Done";
} else {
print "Error";
}
print "</body></html>";
-----------------------------------------------------------------------
the unpack.pl run ~10 minutes ( the default timeout is 5 minute ) and
when its finished I dont get the script output ( Done or Error ).
How I can solve it without change the default definition of timeout in
httpd.conf.
Thanks
I run the following script in apache.
-----------------------------------------------------------------------
#!/usr/local/bin/perl
print "Content-type:text/html\n\n";
print "<html><body>";
`/tmp/bin/unpack.pl `;
$comm_status = $?;
if( $comm_status eq "0" ) {
print "Done";
} else {
print "Error";
}
print "</body></html>";
-----------------------------------------------------------------------
the unpack.pl run ~10 minutes ( the default timeout is 5 minute ) and
when its finished I dont get the script output ( Done or Error ).
How I can solve it without change the default definition of timeout in
httpd.conf.
Thanks