I have a problem using Photologue application on heroku with S3 as storage for Django 1.5 media and static files.
The problem is that whenever I try to add, for example, the size of the photo in django admin I get: NotImplementedError
Exception Value: This backend doesn't support absolute paths.
The same applies to trying to set up a photologist using manage.py plinit .
The problem is that the photologist is trying to use the os.path method in several places (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 a way to use django-photologue with remote storage, Amazon S3 in particular?
source share