diff options
Diffstat (limited to 'engine/settings.example.php')
| -rw-r--r-- | engine/settings.example.php | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/engine/settings.example.php b/engine/settings.example.php index e6857e4c4..3b139d710 100644 --- a/engine/settings.example.php +++ b/engine/settings.example.php @@ -1,6 +1,6 @@ <?php /** - * Defines database creditials. + * Defines database credentials. * * Most of Elgg's configuration is stored in the database. This file contains the * credentials to connect to the database, as well as a few optional configuration @@ -80,7 +80,8 @@ $CONFIG->dbprefix = '{{dbprefix}}'; * 1) One or more memcache servers (http://www.danga.com/memcached/) * 2) PHP memcache wrapper (http://uk.php.net/manual/en/memcache.setup.php) * - * Note: Multiple server support is only available on server 1.2.1 or higher with PECL library > 2.0.0 + * Note: Multiple server support is only available on server 1.2.1 + * or higher with PECL library > 2.0.0 */ //$CONFIG->memcache = true; // @@ -106,8 +107,17 @@ $CONFIG->broken_mta = FALSE; * * Elgg stores each query and its results in a query cache. * On large sites or long-running scripts, this cache can grow to be - * large. To disable query caching, set this to FALSE. + * large. To disable query caching, set this to TRUE. * * @global bool $CONFIG->db_disable_query_cache */ -$CONFIG->db_disable_query_cache = FALSE;
\ No newline at end of file +$CONFIG->db_disable_query_cache = FALSE; + +/** + * Minimum password length + * + * This value is used when validating a user's password during registration. + * + * @global int $CONFIG->min_password_length + */ +$CONFIG->min_password_length = 6; |
