0

ペーパークリップを使用して画像をアップロードできません。ファイルを選択して送信すると、ページがリロードされ、「ファイルが選択されていません」と表示されます。

私のコード trip.rb

    class Trip < ActiveRecord::Base
       has_many :images
       accepts_nested_attributes_for :images, :allow_destroy => true
       attr_accessible :messages_attributes
    end 

フォーム

    <%= f.fields_for :images do |image_fields| %> 
       <% if image_fields.object.new_record? %> 
         <%= image_fields.file_field :image %>  
       <% end %> 
    <% end %>

Image.rb

    class Image < ActiveRecord::Base
     belongs_to :trips

     has_attached_file :image, :styles => { :large => "640x480", :medium => "300x300>", :thumb => "100x100" },
     :storage => :s3,
     :bucket => 'Thrill',
     :s3_credentials => {
       :access_key_id => 'XXXXXXXXXXXX',
       :secret_access_key => 'xxxxxxxxxxxxxxxxxxxxx'
     }
    end

また、gemファイルにgem 'rmagick'をインストールしました。これは、同様の問題を抱えている多くの人にとって解決策と思われます。しかし、私の場合はそうではありません。

何が間違っている可能性がありますか?ありがとう!

アップデート

Railsコンソール経由

Image.create :image => File.open('c:/sites/thrillb/app/assets/images/srf.jpg')

同様に機能していません。

 identify.exe: unable to open image `AppData/Local/Temp/stream20120826-41544-1no4
 vdp.jpg': No such file or directory @ error/blob.c/OpenBlob/2641.
 identify.exe: unable to open image `AppData/Local/Temp/stream20120826-41544-1no4
 vdp.jpg': No such file or directory @ error/blob.c/OpenBlob/2641.
 identify.exe: unable to open image `AppData/Local/Temp/stream20120826-41544-1no4
 vdp.jpg': No such file or directory @ error/blob.c/OpenBlob/2641.
 => #<Image id: nil, image_file_name: "srf.jpg", image_content_type: "image/jpeg"
 , image_file_size: 142825, image_updated_at: "2012-08-26 19:28:19", trip_id: nil
 , created_at: nil, updated_at: nil, title: nil, location_id: nil>
4

1 に答える 1

1

-gem "cocaine", "0.3.2"を gemfile に追加すると、問題が解決します。

詳細はこちら - Paperclip File Not Found エラー

于 2012-11-03T11:49:45.463 に答える