[Answered ]-Unable to save InMemoryUploadedFile to model in Django

2👍

You may want to try without the leading slash in your ImageField’s upload_to path:

>>> os.path.join("/whatever", "/else")
'/else'

Leave a comment