First, you need to find out what max_execution_time is set on your PHP installation: Locate your php.ini file and check what the value of the max_execution_time directive is: [root@server ~]# php -i | grep php.ini Configuration File (php.ini) Path => /etc Loaded Configuration File => /etc/php.ini [root@server ~]# grep -i max_execution /etc/php.ini max_execution_time = 30 […]