config.php

We need your assistance to make the documentation accurate, user friendly and understandable. Therefore we welcome any tips or suggestions regarding documentation. Thank you in advance for your contribution.

However, we will not respond to technical support questions submitted using this form. If you are having difficulty with CMSMS and cannot find the solution on this website, please submit your question appropriately on our support forum at: http://forum.cmsmadesimple.org. Please remember to follow the forum rules when posting.

CMS Made Simple™ Partner



The default config.php file for a new CMS Made Simple install will look similar to this:

<?php
# CMS Made Simple Configuration File
# Documentation: /doc/CMSMS_config_reference.pdf
#
$config['dbms'] = 'mysqli';
$config['db_hostname'] = 'localhost';
$config['db_username'] = '**********';
$config['db_password'] = '**********';
$config['db_name'] = '**********';
$config['db_prefix'] = 'cms_';
$config['timezone'] = 'UTC';
?>

If you want to add extra functionality or settings, you can add your lines at the bottom of the configuration file:

$config['db_prefix'] = 'cms_';
$config['timezone'] = 'UTC';
# add your own additional configuration lines below here...
...
?>

You will find more information about the available parameters in the config.php Reference