diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2002-10-21 13:09:29 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2002-10-21 13:09:29 +0000 |
commit | b9efd223395eb66bf7503a3f8a86d8eb67d4ae13 (patch) | |
tree | cc618e34d2faccd588850fd953db222b91b4bc18 /php.ini-recommended | |
parent | dde85e3936f2d67cfb405ed77c08c429e4954186 (diff) | |
download | php-git-b9efd223395eb66bf7503a3f8a86d8eb67d4ae13.tar.gz |
Fixed bug #16880. Added an ini option max_input_time that allows the user
to specify how much time a script may spend parsing input data (POST, GET, etc..).
Diffstat (limited to 'php.ini-recommended')
-rw-r--r-- | php.ini-recommended | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/php.ini-recommended b/php.ini-recommended index 9b378fb96d..20957460eb 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -232,6 +232,7 @@ expose_php = On ;;;;;;;;;;;;;;;;;;; max_execution_time = 30 ; Maximum execution time of each script, in seconds +max_input_time = 60 ; Maximum amount of time each script may spend parsing request data memory_limit = 8M ; Maximum amount of memory a script may consume (8MB) |