我在 Heroku 上使用 Photologue 应用程序和 S3 作为媒体和静态文件 Django 1.5 的存储时遇到问题。
问题是,每当我尝试在 django admin 中添加照片大小时,我都会得到:NotImplementedError
Exception Value:
This backend doesn't support absolute paths.
尝试使用 配置 photologue 也是如此manage.py plinit
。
问题似乎是 photologue 尝试os.path
在几个地方使用方法,例如(回溯):
/app/.heroku/python/lib/python2.7/site-packages/photologue/models.py in _get_SIZE_filename
return smart_str(os.path.join(self.cache_path(),
有没有办法将 django-photologue 与远程存储一起使用,尤其是 Amazon S3?