partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 661e23593457968dbd9e40ed5bac8de726ca376c
parent efc93b8c654aa18d0447403e38219f14e1740629
Author: Felicitus <felicitus@felicitus.org>
Date:   Sat, 10 Oct 2015 19:20:19 +0200

Increased minimum memory usage to 128M.

Diffstat:
Mapp/PartKeeprRequirements.php | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/PartKeeprRequirements.php b/app/PartKeeprRequirements.php @@ -20,10 +20,10 @@ class PartKeeprRequirements extends SymfonyRequirements sprintf('Install the GD library extension')); - $this->addPhpIniRequirement("memory_limit", $this->getBytesIniSetting("memory_limit") > 64000000, + $this->addPhpIniRequirement("memory_limit", $this->getBytesIniSetting("memory_limit") > 128000000, false, "Memory Limit too small", - sprintf("The php.ini memory_limit directive must be set to 64MB or higher. Your limit is set to %s", + sprintf("The php.ini memory_limit directive must be set to 128MB or higher. Your limit is set to %s", ini_get("memory_limit"))); $this->checkWritable(realpath(dirname(__FILE__)."/../data/"));