My PHP scripts are timing out
If your PHP scripts are timing out, you may need to adjust one of the following PHP directives in your PHP template file.
max_execution_time = 600 ; Maximum execution time of each script, in secondsmax_input_time = 600 ; Maximum amount of time each script may spend parsing request dataWhen using CGI PHP, you must add this additional variable to your PHP template file to prevent PHP from timing out after 30 seconds.
default_socket_timeout = 600← General