The problem is not exec. timeout. I have all error_report turn on and if I get any execution timeout, it would exit and PHP would print an exec. timeout error. That did not happened. Beside, the script ran for less than 10 secs and died. I had exec. timeout = 30 sec.
suppose you have this cript
<?php
$array = array();
for($i=0; $i<1000000; $i++)
push_array($array, $i);
?>
My server would died within 8 secs. While running this script on another server, it would error out a timeout message.
What do you think?
Khoa Nguyen