Problem/Motivation
I followed the steps on this recipe's main page and set up a new site. I noticed Display Builder was missing to manually tried to enable the recipe and I got the titular error:
prompt> php core/scripts/drupal recipe ../recipes/display_builder_bootstrap
In ConfigConfigurator.php line 69:
The configuration 'field.storage.node.field_image' exists already and does not match the recipe's configuration
I then deleted that field and was able to enable the recipe. The second time I got this error:
[ERROR] There were errors validating the config synchronization.
Unable to uninstall the <em class="placeholder">UI Icons Text</em> module because: Provides a filter plugin that
is in use in the following filter formats: <em class="placeholder">Basic HTML, Full HTML</em>.
However it did enable most of the modules so it should at least be partially working.
Comments
Comment #2
mogtofu33 commentedThanks for testing.
This is typical of an install on an existing site or site with profile 'standard', it is important to start from a 'minimal' profile.
Can you check you started from minimal?
Display builder is in the composer recipe line on the doc and must be installed with the recipe, so not sure how it was missing on your test:
composer require drupal/display_builder_bootstrap:^1.0.0 drupal/display_builder:1.0.x-devHere is the full list of commands from the doc, on linux a copy paste is working well:
Let me know if you have other restrictions to run these, like if you are on an other system. Thanks.
Comment #3
tolstoydotcomThe "install with minimal" is in the DDEV section, I didn't read that because I'm using a regular LAMP stack. I may try again using minimal.
The modules weren't enabled because the recipe didn't import the first time due to the image field. When I removed that, the recipe did import OK aside from the filter format issue.
Comment #4
mogtofu33 commented