config.php
Welcome to the official CMS Made Simple documentation pages. We make a continuous effort to keep the information here up to date! However, dear user, we highly value your assistance in the process.
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.
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'] = 'mysql';
- $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 documentation file: /doc/CMSMS_config_reference.pdf at your webserver.
Previous page: Page UrlsNext page: Users and Groups




