- Issue created by @kumkum29
- π«π·France kumkum29
After analyse, when I switch on 'ckeditor5' format, I get an error in logs :
NetworkError: Failed to execute 'send' on 'XMLHttpRequest': Failed to load 'http://assets-dev......... /image.svg
I use AWS S3 to store the images.
Maybe is related to this ols issue: https://www.drupal.org/project/ckeditor/issues/3403865 π CKEditor not loading on chrome (Failed to execute 'send' on 'XMLHttpRequest') Active
- πΊπΈUnited States sonfd Portland, ME
I just ran into a similar issue, but my issue was simply because my site was using an old .png for the icon and CKEditor 5 only supports svgs. I'll note that my site just stores files locally, on the server.
After uploading the svg, I noticed that the svg seemed to be stored in a data property in the config file for my button, e.g.
../config/embed.button.my_button.yml
.I'll note that I also see it in my my files directory at
public://embed_buttons/my-button.svg
.After deleting the file from my public files directory, I still see the icon in my toolbar, but it appears that this may be because entity embed recreates the file when I load my page with the toolbar icon.
No idea if this is useful information, but figured I'd share, just in case.