You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to some very odd behavior in Drupal core, we must use require rather than require_once when including files in settings.php.
If we do not, the imported variable values from the required files will not be available at all stages of the Drupal installation process. This causes $config_directories['sync'] to be empty at an inopportune time, which causes Drupal to write various configuration settings directly to settings.php via drupal_rewrite_settings().
The text was updated successfully, but these errors were encountered:
grasmash
added a commit
to grasmash/bolt
that referenced
this issue
Aug 31, 2016
Due to some very odd behavior in Drupal core, we must use
require
rather thanrequire_once
when including files in settings.php.If we do not, the imported variable values from the required files will not be available at all stages of the Drupal installation process. This causes
$config_directories['sync']
to be empty at an inopportune time, which causes Drupal to write various configuration settings directly to settings.php viadrupal_rewrite_settings()
.The text was updated successfully, but these errors were encountered: