Reputation: 69
Django 1.11.2 Wagtail 1.10.1 Apache2.4
I uploaded an image from my computer via the wagtail dashboard. Wagtail shows the image and I clicked "update".
Then I went back to images. There is no new image but a new card with the name of the new file. There is also a picture symbol with the file name of the picture. If I click this field I get the template to edit the image. But the image is not shown (Bildschirmfoto_2018_03_18_17_23_06.png).
Why is the image not shown?
Upvotes: 1
Views: 1241
Reputation: 25272
You need to configure Apache to serve files from /media/images/
(or whatever you've set as MEDIA_ROOT
in your settings file). See https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/modwsgi/#serving-files
Upvotes: 1