Also - I did find this info on the forum from others having similar issues installing pfblockerNG / php memory issues but I don't know if I need to do these edits too:
for amd64 systems … change /etc/inc/config.inc (line 75) from 512M to 640M or 768M.
Code: [Select]
// Set memory limit to 512M on amd64.
if ($ARCH == "amd64") {
ini_set("memory_limit", "512M");
} else {
ini_set("memory_limit", "128M");
}
to
Code: [Select]
// Set memory limit to 512M on amd64.
if ($ARCH == "amd64") {
ini_set("memory_limit", "768M"); # amd64 Default 512M
} else {
ini_set("memory_limit", "128M");
}
AND modify the /usr/local/etc/php.ini (last line) and /etc/rc.php_ini_setup files (line 303) from
Code: [Select]
suhosin.memory_limit = 536870912
to
Code: [Select]
suhosin.memory_limit = 671088640 # 640M Default 536870912
or
Code: [Select]
suhosin.memory_limit = 805306368 # 768M Default 536870912