[Answered ]-Django CMS Aldryn Create Wizard database error

1👍

So the answer is I need to be using djangocms-text-ckeditor>=2.8.1 for my version of Django==3.2.0.

Thank you @mkoistinen!

👤dmk12

1👍

Comparing the save() method for the CMSWizards of both Aldryn FAQ (which works for you) and Aldryn NewsBlog (which does not) there is a clue that perhaps you have set the settings WIZARD_CONTENT_PLUGIN and WIZARD_CONTENT_PLUGIN_BODY? FAQ uses these settings whereas NewsBlog does not, instead it requires the used of djangocms-text-ckeditor‘s TextPlugin.

I do see that you have djangocms-text-ckeditor installed though. I wonder if you haven’t yet run migrations for it yet, perhaps?

Are you able to use a normal TextPlugin elsewhere in your project?

Leave a comment