Hello
I set max_execution_time to 30 in php.ini file (i also checked in phpinfo).
max_input_time is set to 45.

But when I use in script something like that:

while ( 1 == 1 )
or
for ( $i=0; $i < 10000000000000000000000000000000000000000; $i++)

{
  echo "\n".$i;
}


it doesn't work - execution of script lasts for unlimited time.

of course I executed it via apache (I read that this limit doesn't work
while executing in console)

is it bug or am i doing something wrong?

regards
nichu

Reply via email to