change memory_limit value, 128 MB is enough

This commit is contained in:
Manuel Raynaud
2013-12-18 09:39:23 +01:00
parent e7a564b2df
commit d0e5d189d2
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ Requirements
* gd
* curl
* safe_mode off
* memory_limit at least 150M, preferably 256.
* memory_limit at least 128M, preferably 256.
* post_max_size 20M
* upload_max_filesize 2M
* apache 2

View File

@@ -58,7 +58,7 @@ class CheckPermission extends BaseInstall
/** @var array Minimum server configuration necessary */
protected $minServerConfigurationNecessary = array(
'memory_limit' => 157286400,
'memory_limit' => 134217728,
'post_max_size' => 20971520,
'upload_max_filesize' => 2097152
);