Hello,
I need help in figuring out how max_execution_time and set_time_limit effect each other.
here is the scenario:
I’m sending mass email to 90 000 member (not spam), however after some time i’m getting Operation Timeout message from the browser.
after researching i thought that maybe max_execution_time might be the problem, when checked the php.ini file it was set to 30. My question is: if i set it to 1800 would this be enough for my script not timing out?
or i should be using set_time_limit also?
my second question please, is there a very simple php script which basically do nothing but test what my execution time limit is? like a script that runs without doing anything until the execution time limit is reached and its timedout.
thank you a lot for the help!