diff options
Diffstat (limited to 'engine/settings.example.php')
| -rw-r--r-- | engine/settings.example.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/engine/settings.example.php b/engine/settings.example.php index c503f0162..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,7 +107,7 @@ $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 */ @@ -119,4 +120,4 @@ $CONFIG->db_disable_query_cache = FALSE; * * @global int $CONFIG->min_password_length */ -$CONFIG->min_password_length = 6;
\ No newline at end of file +$CONFIG->min_password_length = 6; |
