diff options
author | Seth <seth.mos@xs4all.nl> | 2009-07-09 21:01:30 +0200 |
---|---|---|
committer | Seth <seth.mos@xs4all.nl> | 2009-07-09 21:01:30 +0200 |
commit | 83c195f2cf9e153878a58e6c6897e814a12f7c87 (patch) | |
tree | 05971145354f120c71fce843c4f90195636c51af /etc | |
parent | 2add0a6696c42669706f71baacd2cf88269418f1 (diff) | |
download | pfsense-83c195f2cf9e153878a58e6c6897e814a12f7c87.zip pfsense-83c195f2cf9e153878a58e6c6897e814a12f7c87.tar.gz |
Increase the PHP running memory limit to 128MB from 32MB, on 1.5MB large
config XML files we run out of memory.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/config.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/config.inc b/etc/inc/config.inc index e77801c..e9b9e9c 100644 --- a/etc/inc/config.inc +++ b/etc/inc/config.inc @@ -43,7 +43,7 @@ * Setting the memory_limit parameter in the php.ini does not seem to * take any effect. Also, that would be too late in the boot process */ -ini_set("memory_limit","32M"); +ini_set("memory_limit","128M"); if($g['booting']) echo "."; @@ -1875,4 +1875,4 @@ function set_device_perms() { if($g['booting']) echo "."; $config = parse_config(); -?>
\ No newline at end of file +?> |