

htaccess, which are required for Drupal to run but don't live within the core/ directory. The scaffolding manages core files like index.php and.

On Pantheon hosting, the host-specific temp directory is set in their drops-8 distribution.ĭrupal 8.8 introduced scaffolding in core and separated dev dependencies into a separate package.On Acquia hosting, the temp directory path can be found in the environment variable $_ENV, as shown in the snippets above.Replace this (using your environment-specific path) with: $settings = $_ENV More information local development.Ĭheck your settings.php files for the temp directory configuration: $config = $_ENV The temp directory is usually specific to your host or the environment where your Drupal site is running, so you may need to set this differently for production vs.

The sync directory is defined in $settings and not $config_directories.Replace this (using your original path) with: $settings = './config/sites/default' More information

Before Drupal 8.8, you could configure multiple directories for exporting config now there's only one, and the variable name has changed.Ĭheck settings.php files for the $config_directories variable: $config_directories = The config sync directory is where Drupal stores your exported configuration YAML files. : Coder is a library to review Drupal code.įirst, find your settings.php file this will be within your Drupal site at sites/default/settings.php, or may be an include file named like sites/default/settings.*.php. (develop) $ composer show drupal/coderĭescrip.
#Drupal 8 upgrade core shell script code#
If you're using Coder to do automated code review against the Drupal coding standards, you may need to update.
#Drupal 8 upgrade core shell script install#
Additionally, the Drupal 8.8 release introduces an incompatibility between core Content Moderation module and the contrib Workspace module.Īs of December 2019, there is no ready-made upgrade path from the contrib module to the core module the recommendation is to uninstall the contrib module - which will delete all workspace content that is not yet live - and then install core's module ( documentation).Ĭheck this bug report on the contrib Workspace moduleįor now, if you're using the contrib Workspace module and the core Content Moderation module, you will not be able to update to Drupal 8.8 Workspace isn't common on our sites, so running into an issue with it usually means doing some research. The contrib Workspace module has been moved into core, and renamed "Workspaces" installing both modules on the same site creates code-level conflicts.
