diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-08-17 13:43:51 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-08-17 13:43:51 +0000 |
commit | 2ae992d7725a772380ae6b765d4eebd59cbcee9c (patch) | |
tree | 2cf71e84eb421d579828e32904a6c6a069fb7a48 /main/main.c | |
parent | e1efd7c87b4a2bdac26d0f7d8a746729bc92fed7 (diff) | |
download | php-git-2ae992d7725a772380ae6b765d4eebd59cbcee9c.tar.gz |
MFB: Increased default memory limit to 16 megabytes to accommodate for a
more accurate memory utilization measurement.
Diffstat (limited to 'main/main.c')
-rw-r--r-- | main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c index ce40664b5c..abe09b232d 100644 --- a/main/main.c +++ b/main/main.c @@ -409,7 +409,7 @@ PHP_INI_BEGIN() PHP_INI_ENTRY("smtp_port", "25", PHP_INI_ALL, NULL) PHP_INI_ENTRY("browscap", NULL, PHP_INI_SYSTEM, NULL) #if MEMORY_LIMIT - PHP_INI_ENTRY("memory_limit", "8M", PHP_INI_ALL, OnChangeMemoryLimit) + PHP_INI_ENTRY("memory_limit", "16M", PHP_INI_ALL, OnChangeMemoryLimit) #endif PHP_INI_ENTRY("precision", "14", PHP_INI_ALL, OnSetPrecision) PHP_INI_ENTRY("sendmail_from", NULL, PHP_INI_ALL, NULL) |