diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-04 17:19:04 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-04 17:19:04 +0000 |
commit | b5e64f5a6ed1c7160a6104097185cc486db3aa95 (patch) | |
tree | 0b706cb1408b7eb26720ff9ffbb34436a8f135da /modules/system/system.module | |
parent | d5916e806102a43ec4547b78b5da0f828806bfeb (diff) | |
download | brdo-b5e64f5a6ed1c7160a6104097185cc486db3aa95.tar.gz brdo-b5e64f5a6ed1c7160a6104097185cc486db3aa95.tar.bz2 |
#197720 by nedjo, scor, keith.smith, catch: inform installing users about PHP memory requirements of Drupal 6
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 2431ef613..2b962c7b0 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -22,6 +22,11 @@ define('DRUPAL_CORE_COMPATIBILITY', '6.x'); define('DRUPAL_MINIMUM_PHP', '4.3.3'); /** + * Minimum recommended value of PHP memory_limit. + */ +define('DRUPAL_MINIMUM_PHP_MEMORY_LIMIT', '16M'); + +/** * Minimum supported version of MySQL, if it is used. */ define('DRUPAL_MINIMUM_MYSQL', '4.1.0'); |