How do I use ini_set('max_execution_time', 0);?
Question 1: Do I place it at the top of the .PHP file or in a function that takes a long time to do something?
Question 2: Does this setting last forever after being set? Or does it return back to its original 300sec or whatever default value after the function stops running?
ini_set()are per-script-execution. It applies only to that script, and only while it's running. It will not change global PHP settings for other scripts. – Marc B Jun 29 '11 at 20:16max_execution_timeto zero: stackoverflow.com/questions/4306605/…. – Sk8erPeter Mar 26 at 14:27