To locate the SilverStripe configuration file you need to:
- log in to cPanel and access the FileManager or connect via FTP to the server
- navigate to the location where you installed the SilverStripe CMS
- identify the _config.php file
- in this file you can view the configuration information of your SilverStripe website:
global $databaseConfig;
$databaseConfig = array(
"type" => 'MySQLDatabase',
"server" => 'localhost',
"username" => 'example_ss',
"password" => 'p4ssw0rd',
"database" => 'example_s',
"path" => '',
);
