diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-04-26 18:55:30 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-04-26 18:55:30 +0000 |
commit | 32963a17e3f44e73f2430fe9570f311c23ecad59 (patch) | |
tree | 6f870958dbfcbb50d7f9c808c8e19af3f0ed6675 /usr/local/etc/php.ini | |
parent | fde923d367aa698fca4cb53b40840bd08df95296 (diff) | |
download | pfsense-32963a17e3f44e73f2430fe9570f311c23ecad59.zip pfsense-32963a17e3f44e73f2430fe9570f311c23ecad59.tar.gz |
Match max_execution_time and max_input_time to known good values that allow for really long php execution script time.
Diffstat (limited to 'usr/local/etc/php.ini')
-rw-r--r-- | usr/local/etc/php.ini | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/etc/php.ini b/usr/local/etc/php.ini index 8d75f39..521dfe3 100644 --- a/usr/local/etc/php.ini +++ b/usr/local/etc/php.ini @@ -1,6 +1,6 @@ magic_quotes_gpc = Off -max_execution_time = 0 -max_input_time = 180 +max_execution_time = 99999999 +max_input_time = 99999999 register_argc_argv = Off file_uploads = On upload_tmp_dir = /tmp |