From a15c86702a483f45247a1526b222c190da45132b Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole Date: Thu, 14 May 2015 11:52:50 +0100 Subject: [PATCH] Issue #2289201 by mariano.barcia, webchick: [Meta] Make drupal install and run within reasonable php memory limits so we can reset the memory requirements to lower levels --- core/includes/bootstrap.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc index e8808c22824..3ab64bfc21b 100644 --- a/core/includes/bootstrap.inc +++ b/core/includes/bootstrap.inc @@ -28,8 +28,9 @@ const DRUPAL_MINIMUM_PHP = '5.4.5'; /** * Minimum recommended value of PHP memory_limit. * - * @todo Reduce the memory required to install on some environments in - * https://www.drupal.org/node/2289201 and then decrease this limit. + * 64M was chosen as a minimum requirement in order to allow for additional + * contributed modules to be installed prior to hitting the limit. However, + * 40M is the target for the Standard installation profile. */ const DRUPAL_MINIMUM_PHP_MEMORY_LIMIT = '64M';