Created
December 20, 2019 00:04
-
-
Save alexfornuto/3398ae4ecb25b5dbefbf245557b40c84 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Drupal 8.7.x sites that have modified the following the `config_sync_directory` value in `settings.php` must update as follows before upgrading to Drupal 8.8.x: | |
1. Locate: | |
```php:title=settings.php | |
$config_directories = array( | |
CONFIG_SYNC_DIRECTORY => dirname(DRUPAL_ROOT) . '/config', | |
); | |
``` | |
1. Replace it with: | |
```php:title=settings.php | |
$settings['config_sync_directory'] = dirname(DRUPAL_ROOT) . '/config'; | |
``` | |
**Note:** `example-drops-8-composer` (the starting template for all Composer-managed sites on Pantheon) includes this configuration in `settings.php`. Any site built from this example (e.g. using either the No CI workflow or the Build Tools workflow) will need to be updated. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment