Active
Project:
Varbase Editor
Version:
10.1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
11 Mar 2026 at 12:18 UTC
Updated:
11 Mar 2026 at 12:32 UTC
Jump to comment: Most recent
When installing Varbase with Drupal 11.3+, the recipe assembly step fails with an InvalidConfigException for both editor.editor.basic_html and editor.editor.full_html:
Drupal\Core\Recipe\InvalidConfigException: There were validation errors in editor.editor.basic_html:
- settings.plugins.ckeditor_bidi_ckeditor5.rtl_default: 'rtl_default' is not a supported key.
Drupal\Core\Recipe\InvalidConfigException: There were validation errors in editor.editor.full_html:
- settings.plugins.ckeditor_bidi_ckeditor5: Configuration for the enabled plugin "Bidi Buttons"
(ckeditor_bidi_ckeditor5) is missing.
Two separate issues in the same module:
config/optional/editor.editor.basic_html.yml usesrtl_default: false under ckeditor_bidi_ckeditor5.ckeditor_bidi schema only defines switch_only, not rtl_default.
config/optional/editor.editor.full_html.yml includesdirection toolbar item (which activates the ckeditor_bidi_ckeditor5 plugin)In config/optional/editor.editor.basic_html.yml, replace:
ckeditor_bidi_ckeditor5:
rtl_default: false
with:
ckeditor_bidi_ckeditor5:
switch_only: false
In config/optional/editor.editor.full_html.yml, add the missing plugin configuration after ckeditor5_sourceEditing:
ckeditor5_sourceEditing:
allowed_tags: { }
ckeditor_bidi_ckeditor5:
switch_only: false
Comments