Frequently Asked Question
How to resolve: Maximum execution time of XX second
Last Updated 7 years ago
If your php is running in safe-mode, you need to find your php.ini file and increase max_execution_time entry. i.e.
; Maximum execution time of each script, in secondsIf your PHP is not in safe-mode, you can open config/config.inc.php file, and increase ExecTimeLimit entry
; http://php.net/max-execution-time
; Note: This directive is hardcoded to 0 for the CLI SAPI
max_execution_time=60
$config['ExecTimeLimit'] = 60;