Here is a sample config.php for EE v1.6.0. Specific details have been replaced with “*****”; you’ll need to replace those with your details for this to work. You will notice that this file is much shorter than previous versions. This is because most of the configuration options have been moved to the database.
<?php
if ( ! defined('EXT')){
exit('Invalid file request');
}
$conf['app_version'] = "160";
$conf['license_number'] = "";
$conf['debug'] = "2";
$conf['install_lock'] = "1";
$conf['db_hostname'] = "*****";
$conf['db_username'] = "*****";
$conf['db_password'] = "*****";
$conf['db_name'] = "*****";
$conf['db_type'] = "mysql";
$conf['db_prefix'] = "exp";
$conf['db_conntype'] = "0";
$conf['system_folder'] = "system";
$conf['cp_url'] = "http://example.com/system/";
$conf['doc_url'] = "http://expressionengine.com/docs/";
$conf['is_system_on'] = "y";
$conf['allow_extensions'] = "n";
$conf['multiple_sites_enabled'] = "n";
?>
Category:Troubleshooting Category:Upgrading
