"Fixes #3862, set_time_limit(0) has no effect because of ini_set('max_execution_time', 60 * 5);

changed max_execution_time , 0. Since php 4.3 this is the default anyway"

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6340 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
phpnut 2008-01-08 13:53:03 +00:00
parent acd9cd5b8a
commit 15be9d3cb9

View file

@ -143,7 +143,7 @@ class ShellDispatcher {
ini_set('error_reporting', E_ALL);
ini_set('html_errors', false);
ini_set('implicit_flush', true);
ini_set('max_execution_time', 60 * 5);
ini_set('max_execution_time', 0);
}
define('PHP5', (phpversion() >= 5));
define('DS', DIRECTORY_SEPARATOR);