To locate the SilverStripe configuration file you need to:

  1. log in to cPanel and access the FileManager or connect via FTP to the server
  2. navigate to the location where you installed the SilverStripe CMS
  3. identify the _config.php file
  4. 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" => '',
);
Cette réponse était-elle pertinente? 0 Utilisateurs l'ont trouvée utile (0 Votes)