6

我很难将我的应用程序部署到使用 mod_rails 运行 ubuntu 的服务器上。在服务器上运行 webrick 似乎很好,我可以保存文件,没问题。但是通过 nginx 运行应用程序,当我尝试保存文件时出现此错误。

[回形针] 处理时收到错误:# [回形针] 处理时收到错误:# R

4

3 回答 3

4
Paperclip.options[:image_magick_path]

显然已弃用。尝试:

Paperclip.options[:command_path] = "/usr/local/bin"

这对我有用。根据需要调整 ImageMagick 的路径。

于 2010-03-05T15:36:28.947 回答
0

ImageMagick 的路径丢失了,尝试添加

Paperclip.options[:image_magick_path] = '/opt/local/bin'

到你的配置。

于 2009-10-09T15:39:11.917 回答
0

如果添加

Paperclip.options[:command_path] = "/usr/local/bin/"

不起作用尝试ImageMagick与普通代表​​一起安装:

mkdir /sources cd /sources

wget
ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz

tar xvfz ImageMagick.tar.gz

cd ImageMagick-6.6.7-8

来了这部分会有所作为

./configure --disable-static
--with-modules --without-perl --without-magick-plus-plus --with-quantum-depth=8

make

sudo make install
于 2011-02-23T20:13:24.253 回答