diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-07-26 20:09:50 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-07-26 20:09:50 +0000 |
commit | 2a8ff7c3697c31d70fbafea7c2663f447bd63163 (patch) | |
tree | 52c5e252c4534489a820b7a58dedf463c41282e1 | |
parent | 6d2aaeb08863be64bd2ef972e65e9af32dcf4230 (diff) | |
download | pfsense-packages-2a8ff7c3697c31d70fbafea7c2663f447bd63163.tar.gz pfsense-packages-2a8ff7c3697c31d70fbafea7c2663f447bd63163.tar.bz2 pfsense-packages-2a8ff7c3697c31d70fbafea7c2663f447bd63163.zip |
Fix new behavior introduced:
SquidGuard blacklist upload does not work. When I try to upload a new Shalla-Blacklist I get the following error:
Fatal error: Allowed memory size of 12582912 bytes exhausted (tried to allocate 9123462 bytes) in /usr/local/pkg/squidguard_configurator.inc on line 1647
-rw-r--r-- | packages/squidGuard/squidguard_configurator.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/squidGuard/squidguard_configurator.inc b/packages/squidGuard/squidguard_configurator.inc index 1edab85a..492de85b 100644 --- a/packages/squidGuard/squidguard_configurator.inc +++ b/packages/squidGuard/squidguard_configurator.inc @@ -50,6 +50,10 @@ require_once('filter.inc'); require_once('service-utils.inc'); require_once('squid.inc'); +/* Allow additional execution time 0 = no limit. */ +ini_set('max_execution_time', '3600'); +ini_set('max_input_time', '3600'); + # ------------------------------------------------------------------------------ # files header # ------------------------------------------------------------------------------ |