Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: boxyball on January 26, 2016, 05:48:53 PM

Title: config.inc.php vs defaults.inc.php
Post by: boxyball on January 26, 2016, 05:48:53 PM
Based on the names of the config files, I assume I am supposed to put all changes in the config.inc.php file and never edit the defaults.inc.php.
However, how come $config['enable_installer'] = false; does not seem to have an affect when it's in the defaults.inc.php file?
Title: Re: config.inc.php vs defaults.inc.php
Post by: JohnDoh on January 27, 2016, 02:42:07 AM
everything in defaults.inc.php is overridden by the value in config.inc.php so if in defaults.inc.php you had `$config['enable_installer'] = false;` and in config.inc.php you had `$config['enable_installer'] = true;` then it is configued as true.