diff options
author | sullrich <sullrich@pfsense.org> | 2009-12-03 20:38:10 -0500 |
---|---|---|
committer | sullrich <sullrich@pfsense.org> | 2009-12-03 20:38:10 -0500 |
commit | ebc93ea128d59485871fe7446190142fa0cf789c (patch) | |
tree | a2561a3785bb4c9fda54d086d5eee86fe471626f /usr/local | |
parent | 5c15e649a1644613c4660e618bda7a8e13db711d (diff) | |
download | pfsense-ebc93ea128d59485871fe7446190142fa0cf789c.zip pfsense-ebc93ea128d59485871fe7446190142fa0cf789c.tar.gz |
Lower buffer to 1000. This reduces page load from 1.2 to 0.9
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/index.php b/usr/local/www/index.php index a0f4ce2..374160f 100755 --- a/usr/local/www/index.php +++ b/usr/local/www/index.php @@ -46,7 +46,7 @@ ini_set('output_buffering','true'); // Start buffering with a cache size of 100000 - ob_start(null, "500000"); + ob_start(null, "1000"); ## Load Essential Includes require_once('functions.inc'); |