I have problem with using Photologue app on heroku with S3 as a storage for media and static files, Django 1.5.
The problem is that whenever I try to add e.g. a photo size in django admin I get: NotImplementedError
Exception Value:
This backend doesn't support absolute paths.
the same goes for trying to configure photologue with manage.py plinit
.
The problem seems to be that photologue tries to use os.path
method in several places like (traceback):
/app/.heroku/python/lib/python2.7/site-packages/photologue/models.py in _get_SIZE_filename
return smart_str(os.path.join(self.cache_path(),
Is there any way to use django-photologue with remote storage, Amazon S3 in particular?