// Low memory variable in the installer has been set to 42M instead of 32M #PSCFV-3588

This commit is contained in:
dMetzger
2012-08-10 13:30:20 +00:00
parent 9aa0b11b01
commit 9eaae1db6b
+2 -1
View File
@@ -304,7 +304,8 @@ class InstallControllerHttpProcess extends InstallControllerHttp
*/
public function display()
{
$low_memory = Tools::getMemoryLimit() < Tools::getOctets('32M');
// The installer SHOULD take less than 32M, but may take up to 35/36M sometimes. So 42M is a good value :)
$low_memory = Tools::getMemoryLimit() < Tools::getOctets('42M');
// We fill the process step used for Ajax queries
$this->process_steps = array();