diff --git a/core/includes/install.inc b/core/includes/install.inc index 162d9c9..c9fd75d 100644 --- a/core/includes/install.inc +++ b/core/includes/install.inc @@ -210,7 +210,6 @@ function drupal_get_database_types() { * @endcode * gets dumped as: * @code - * $config_directories['active'] = 'config_hash/active'; * $config_directories['sync'] = 'config_hash/sync' * @endcode */ @@ -524,8 +523,7 @@ function drupal_install_config_directories() { * Ensures that the config directory exists and is writable, or can be made so. * * @param string $type - * Type of config directory to return. Drupal core provides 'active' and - * 'sync'. + * Type of config directory to return. Drupal core provides 'sync'. * * @return bool * TRUE if the config directory exists and is writable. diff --git a/sites/default/default.settings.php b/sites/default/default.settings.php index 376c577..43ee450 100644 --- a/sites/default/default.settings.php +++ b/sites/default/default.settings.php @@ -223,16 +223,16 @@ * Location of the site configuration files. * * The $config_directories array specifies the location of file system - * directories used for configuration data. On install, "active" and "sync" - * directories are created for configuration. The sync directory is used for - * configuration imports; the active directory is not used by default, since the - * default storage for active configuration is the database rather than the file - * system (this can be changed; see "Active configuration settings" below). - * - * The default location for the active and sync directories is inside a - * randomly-named directory in the public files path; this setting allows you to - * override these locations. If you use files for the active configuration, you - * can enhance security by putting the active configuration outside your + * directories used for configuration data. On install, the "sync" directory is + * created. This is used for configuration imports. The active directory is not + * created by default, since the default storage for active configuration is + * the database rather than the file system (This can be changed. See "Active + * configuration settings" below). + * + * The default location for the sync directory is inside a randomly-named + * directory in the public files path. This setting allows you to override + * this location. If you use files for the active configuration, you can + * enhance security by putting the active configuration outside your * document root. * * Example: @@ -556,6 +556,8 @@ * By default, the active configuration is stored in the database in the * {config} table. To use a different storage mechanism for the active * configuration, do the following prior to installing: + * - Create a folder for the active directory and define the path in + * $config_directories with the array key CONFIG_ACTIVE_DIRECTORY. * - Override the 'bootstrap_config_storage' setting here. It must be set to a * callable that returns an object that implements * \Drupal\Core\Config\StorageInterface.