diff options
author | Edin Kadribasic <edink@php.net> | 2002-03-24 17:14:34 +0000 |
---|---|---|
committer | Edin Kadribasic <edink@php.net> | 2002-03-24 17:14:34 +0000 |
commit | 62df9cf644b3b230f40231786bf38ea7acada0a6 (patch) | |
tree | ab341c2ae2e5708f7322578813b8945f985a2797 /sapi/cli/php_cli.c | |
parent | 89994a20325ff6e9d5d92a7933c80942d1e59458 (diff) | |
download | php-git-62df9cf644b3b230f40231786bf38ea7acada0a6.tar.gz |
Override max_execution_time, setting it to unlimited.
Diffstat (limited to 'sapi/cli/php_cli.c')
-rw-r--r-- | sapi/cli/php_cli.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 949c8667f4..94d022b869 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -397,6 +397,7 @@ int main(int argc, char *argv[]) SG(options) |= SAPI_OPTION_NO_CHDIR; zend_alter_ini_entry("html_errors", 12, "0", 1, PHP_INI_SYSTEM, PHP_INI_STAGE_ACTIVATE); zend_alter_ini_entry("implicit_flush", 15, "1", 1, PHP_INI_SYSTEM, PHP_INI_STAGE_ACTIVATE); + zend_alter_ini_entry("max_execution_time", 19, "0", 1, PHP_INI_SYSTEM, PHP_INI_STAGE_ACTIVATE); while ((c = ap_php_getopt(argc, argv, OPTSTRING)) != -1) { switch (c) { |