dbuser = '{{dbuser}}'; // Database password $CONFIG->dbpass = '{{dbpassword}}'; // Database name $CONFIG->dbname = '{{dbname}}'; // Database server // (For most configurations, you can leave this as 'localhost') $CONFIG->dbhost = '{{dbhost}}'; // Database table prefix // If you're sharing a database with other applications, you will want to use this // to differentiate Elgg's tables. $CONFIG->dbprefix = '{{dbprefix}}'; /** * Memcache setup (optional) * This is where you may optionally set up memcache. * * Requirements: * 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 */ //$CONFIG->memcache = true; // //$CONFIG->memcache_servers = array ( // array('server1', 11211), // array('server2', 11211) //); /** * Use non-standard headers for broken MTAs. * * The default header EOL for headers is \r\n. This causes problems * on some broken MTAs. Setting this to TRUE will cause Elgg to use * \n, which will fix some problems sending email on broken MTAs. * * @global bool $CONFIG->broken_mta */ $CONFIG->broken_mta = FALSE; /** * Disable the database query cache * * 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. * * @global bool $CONFIG->db_disable_query_cache */ $CONFIG->db_disable_query_cache = FALSE;