回形针 - 许可被拒绝(控制器)

时间:2014-03-09 02:10:21

标签: ruby-on-rails paperclip permission-denied folder-permissions

好吧,我是一名新的linux / rails学生,还有一些问题,我只是无视解决。我一直在挖stackoverflow和谷歌来解决这个,但我真的不能。我所知道的只与chmod和chown命令有关。你可以看到“Anuncios”是我的桌子。

错误图片: enter image description here

我知道错误原因是paperclip,因为我可以在不上传图像的情况下创建条目。 应用程序在Ubuntu中运行。 RoR 4.

感谢。

2 个答案:

答案 0 :(得分:0)

/ Anuncios不是你的table(也许,你的意思是桌面?)。 您的桌面位于〜/ Desktop -or- / home / Anuncios / Desktop

/ Anuncios看起来像'system dir',它不存在

答案 1 :(得分:0)

<强>解决!

我的同事帮助我,他说在我的控制器中我正在使用导轨4对流[把滤过的参数 - &gt; @anuncio = Anuncio.new(anuncio_params)]曾经是在rails 3中的模特;由于这种变化,有时会导致错误。只是快速anuncio_params由params [:anuncio]。

<强> TL,DR:

由于某些语法版本更改,有时会出现rails错误。只需在我的控制器中替换:     #@ anuncio = Anuncio.new(anuncio_params) 为了这:     @anuncio = Anuncio.new(params [:anuncio])并且有效!

感谢Vitalyp和Kirti Thorat的贡献。 Ps:与Image Magick无关。