concrete5 contains a single configuration file where the database connection parameters are specified.
- Log in to cPanel, section Files -> FileManager
- Navigate to the directory where you have installed concrete5 and locate the database.php file. The path is application/config/
- 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'
)
)
);
