Hello, How to change the default PHP execution time? I am receiving the error: FastCGI process exceeded the default activity time.
Use set_time_limit() set_time_limit(0); will give it infinite time, or pass a number of seconds you want it to be able to execute. Infinite is probably unwise. You can also use max_execution_time() in the same manner. http://us.php.net/set_time_limit