'database', 'username' => 'database', 'password' => 'database', 'host' => 'database', 'port' => '3306', 'driver' => 'mysql', 'prefix' => '', 'collation' => 'utf8mb4_general_ci', ); /** * Error reporting. * * As a developer it is useful to see all errors. If the site you are working * on has a lot of notice errors and you aren't able to fix them you can * suppress them by modifying E_ALL in error_reporting to: * E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED */ error_reporting(E_ALL); ini_set('display_errors', TRUE); ini_set('display_startup_errors', TRUE); /** * Stage file proxy. * * To use stage file proxy you will need the module enabled. Then uncomment * the config line below and edit the domain to suit. If the domain is behind * http auth then you can use agile:collective before the @ sign (or whatever * user/pass combination you need). Change the domain.org part to match the * domain (usually production, sometimes development) with the images. */ // $config['stage_file_proxy.settings']['origin'] = 'http://example.com';