concrete5 contains a single configuration file where the database connection parameters are specified.

  1. Log in to cPanel, section Files -> FileManager
  2. Navigate to the directory where you have installed concrete5 and locate the database.php file. The path is application/config/
  3. The file has the following form:
return array(
    'default-connection' => 'concrete',
    'connections' => array(
        'concrete' => array(
            'driver' => 'c5_pdo_mysql',
            'server' => 'localhost',
            'database' => 'exemplu_concr5',
            'username' => 'exemplu_concr5',
            'password' => 'p4rola',
            'charset' => 'utf8'
        )
    )
);
Was this answer helpful? 0 Users Found This Useful (0 Votes)