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
When trying to install Sitefarm_seed on Drupal 8.4.4 a exception is thrown which prevents installation of Profile from continuing. This is a blocking issue.
The exception is thrown on line 492 of core/lib/Drupal/Core/Config/ConfigInstaller.php
if (!isset($profiles[$name])) {
// Throw an exception if the module being installed contains configuration
// that already exists. Additionally, can not continue installing more
// modules because those may depend on the current module being installed.
$existing_configuration = $this->findPreExistingConfiguration($storage);
if (!empty($existing_configuration)) {
throw PreExistingConfigException::create($name, $existing_configuration);
}
}
The text was updated successfully, but these errors were encountered:
When trying to install Sitefarm_seed on Drupal 8.4.4 a exception is thrown which prevents installation of Profile from continuing. This is a blocking issue.
The exception is thrown on line 492 of core/lib/Drupal/Core/Config/ConfigInstaller.php
The text was updated successfully, but these errors were encountered: