I have a trouble of time limit.
I have a script that is calling a class and this class is making a giant loop.
it has to process thousands of rows in a database.
The problem is that when i put set_time_limit(5000) in the script, it doesn't seems to work.
Anyway it's doing only about 300 seconds max.
How can I force my script to run longer than 300 seconds ?
Do I have to put set time in the while loop ?
Maybe there is something to prevent loop to execute more than 300 s in order to prevent infinite loop.
Thanks