Author Topic: config.inc.php vs defaults.inc.php  (Read 5414 times)

Offline boxyball

  • Full Member
  • ***
  • Posts: 92
config.inc.php vs defaults.inc.php
« 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?

Offline JohnDoh

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2,855
Re: config.inc.php vs defaults.inc.php
« Reply #1 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.
Roundcube Plugins: Contextmenu, SpamAssassin Prefs, and moreā€¦