These are my following settings:

MEDIA_ROOT = '/home/webapps/test_project/media/'
MEDIA_URL = 'http://192.168.0.2:8090/site_media/'
ADMIN_MEDIA_PREFIX = '/media/'

These are my model fields:

large = models.ImageField(blank=True, null=True, upload_to="images")
thumb = models.ImageField(blank=True, null=True, upload_to="images")

What happens is... when I save a model with the images, the paths to the images are stored but not the actual images.

http://192.168.0.2:8090/site_media/images/BluUnicorn.png http://192.168.0.2:8090/site_media/images/DarkNinja.png ...

Django behaves as if the images have been saved succesfully under the images folder, but the images are not actually there!!


Anyone have a clue of what I did wrong?

PS: I'm using Django 2.1+ SVN

link|improve this question

74% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Mistyped

MEDIA_ROOT = '/home/webapps/test_project/media/'

wrote home instead of root

link|improve this answer
Is this an answer? If you wanted to correct your question, please edit that. – miku Jul 8 '10 at 16:21
It's the answer. – RadiantHex Jul 8 '10 at 21:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.