无法从我的 Heroku 服务器上传和保存文件
我正在尝试通过 wen 界面上传图像。我正在使用 CarrierWave。它在我本地的 Windows 机器上运行得很好。 在 heroku 上我收到以下错误消息: Errno::EACCES(权限被拒绝 - /app/bboads/tmp):
I am trying to upload an image through the wen interface. I am using CarrierWave. It works just fine on my local window machine.
On heroku i get the following errore message:
Errno::EACCES (Permission denied - /app/bboads/tmp):
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在尝试将图片上传到您的
public/
文件夹。 Heroku 不允许你这样做。您需要在 Amazon 的 S3 服务上创建一个存储桶并上传到该存储桶。这里有一个类似的问题
I think you are trying to upload the picture to your
public/
folder. Heroku doesn't let you do this. You need to create a bucket on Amazon's S3 service and upload to that.Here is a similar q/a