Open bosgold opened 2 months ago
Seems to be a known upstream issue with no real fix but you can silence the warning via SILENCED_SYSTEM_CHECKS
in settings.py.
https://github.com/django-ckeditor/django-ckeditor/issues/764
SILENCED_SYSTEM_CHECKS = [
...
"ckeditor.W001", # CKEditor 4.22.1 warning
]
Seems to be a known upstream issue with no real fix but you can silence the warning via
SILENCED_SYSTEM_CHECKS
in settings.py.django-ckeditor/django-ckeditor#764
SILENCED_SYSTEM_CHECKS = [ ... "ckeditor.W001", # CKEditor 4.22.1 warning ]
In which file exactly should I specify the prohibition on updating? Thanks.
@VladlenO in the settings.py of your modoboa instance. There should already be a section SILENCED_SYSTEM_CHECKS. It does not prohibit any updates it only silences the warning.
Is it possible to just install django-ckeditor-5, or does the configuration of modoboa have to be changed for that?
Replacing CKEditor 4 by django-ckeditor 5 does not work. Some of the things I already tried.
Impacted versions
Steps to reproduce
Starting the upgrade procedure to Modoboa 2.3.1. Including the by pip desired upgrade of pip during this procedure.
Current behavior
Upgrade as such was successfull. But all cronjobs " $PYTHON $INSTANCE/manage.py ..." throw out a warning message
Expected behavior
No such warnings. Besides redirecting the cronjob warnings/errors to /dev/null. Don't think this is a good idea.