Re: [PHP] Re: Maximum execution time explanation needed

2003-02-24 Thread Chris Hayes
At 01:27 25-2-03, you wrote: Thank you, but it doesn'T explain why i can run the other script for 5 minutes without any set_time_limit In php.ini the default time limit is set. And when you set the time limit in a script at the start of a loop, the limit counter starts counting at zero again, or

Re: [PHP] Re: Maximum execution time explanation needed

2003-02-24 Thread Ernest E Vogelsinger
At 17:12 24.02.2003, Mathieu Dumoulin spoke out and said: [snip] >Could it be because i fopen the "php://stdin" stream that i can execute my >script for 5 minutes? [snip] Sure, if the script sits and waits until there

[PHP] Re: Maximum execution time explanation needed

2003-02-24 Thread Mathieu Dumoulin
Could it be because i fopen the "php://stdin" stream that i can execute my script for 5 minutes? Mathieu Dumoulin "Mathieu Dumoulin" <[EMAIL PROTECTED]> a écrit dans le message de news: [EMAIL PROTECTED] > Ok, i got this script i run on my server, this script runs exactly 47 secs > or so (45 to 4

Re: [PHP] Re: Maximum execution time explanation needed

2003-02-24 Thread Ernest E Vogelsinger
At 16:27 24.02.2003, Mathieu Dumoulin spoke out and said: [snip] >Thank you, but it doesn'T explain why i can run the other script for 5 >minutes without any set_time_limit > >i'd like to get a precise explanation on why it's doing it, for the time >being i w

[PHP] Re: Maximum execution time explanation needed

2003-02-24 Thread Mathieu Dumoulin
Thank you, but it doesn'T explain why i can run the other script for 5 minutes without any set_time_limit i'd like to get a precise explanation on why it's doing it, for the time being i will use set_time_limit for this script. Mathieu Dumoulin "Joel Colombo" <[EMAIL PROTECTED]> a écrit dans le

[PHP] Re: Maximum execution time explanation needed

2003-02-24 Thread Joel Colombo
stick a. set_time_limit(XXX); at the top of the page where XXX is the maximum time u would like it to run. ex... 180 for say 3 minutes. Joel Colombo "Mathieu Dumoulin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Ok, i got this script i run on my server, this script ru