Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using Paperclip 3.0.1 in rails 3.2.2 I got this error:

**Paperclip::AdapterRegistry::NoHandlerError** 
(No handler found for "2009-11-29-133527.jpg"):

In my model I have:

class Product < ActiveRecord::Base
    ...
    has_many :assets 
    accepts_nested_attributes_for :assets
 end

 class Asset < ActiveRecord::Base
     belongs_to :product
     has_attached_file :image,
               :path => ":rails_root/public/system/:attachment/:id/:style/:filename",
               :url => "/system/:attachment/:id/:style/:filename", 
               :styles => { :medium => "300x300>", :thumb => "100x100>" }
  end

The exception is raised at:

def create
     **@product = Product.new params[:product]**
     ...
end

with params:

{...,
 "product"=>{"title"=>"wibble1", 
             **"assets_attributes"=>{"0"=>{"image"=>"2009-11-29-133527.jpg"}
                                  },** 
             "description"=>"Who is wibble...", 
             "price"=>"23.45"
            }, 
             "commit"=>"Create Product", 
             ...}

Anyone know what's going on?

share|improve this question

6 Answers

This Error is raised (here) because you aren't giving Paperclip a correct class. It's a just a String.

You sould receive something like this in params

"asset"=>
  {"image"=>
    #<ActionDispatch::Http::UploadedFile:0x000000056679e8
    @content_type="image/jpg",
    @headers= "Content-Disposition: form-data; name=\"asset[image]\";
      filename=\"2009-11-29-133527.jpg\"\r\nContent-Type: image/jpg\r\n",
    @original_filename=""2009-11-29-133527.jpg"",
    @tempfile=#<File:/tmp/RackMultipart20120619-1043-yvc9ox>>}

And you should have something like this in yout View (in HAML, very simplified):

= form_for @product do |f|
  = f.fields_for :asset do |asset_form|
    = asset_form.file_field :image

Remeber to set your form to multipart: true

share|improve this answer
1  
Yes do remember to set the multipart option. For example : <%= form_for @video, :method => :put, :html => { :multipart => true} do %> – Americo Jun 13 at 15:43

I just ran into this problem myself. In my case it was caused by skipping the multipart form declaration in the markup.

I was using formtastic so I added this and got it working:

semantic_form_for @picture, :html => {:multipart => true} do |f|

share|improve this answer
1  
For future googlers, if you're using form_for and adding fields outside of the builder, you have to manually force form_for to be multipart, via :html => {:multipart => true} as shown above. Simply adding :multipart => true doesn't work like it does with form_tag – agmin Oct 18 '12 at 2:27
This answer worked for me! I hope the asker would accept this one. This is usually the case that happens when you create a form for a model, then eventually have nested attributes for sub objects that accepts files as attachments which, in my case, was the scenario. (relating my story here for future googlers) – Seth Jeremi Malaki Nov 20 '12 at 8:04

Make sure you migrate the database after you install Paperclip ('rake db:migrate')... Also, you might need to add the new data fields generated by Paperclip to your 'attr_accessible' line in the model. I had a similar problem when I was trying to get Paperclip workin on one of my projects.

share|improve this answer
unfortunately, this doesn't solve the problem for me. Same problem adding attr_accessible :title,:description,:price,:assets_attributes, – Sten Ka Razin Apr 5 '12 at 20:31

I have met the same problem, I think it is because there are two tables sharing the same attached_file_name... In my case, I add a :photo column both to activities and tweets, then the case seems to be that the system can find one of them but not the other. Because the files are saved in /public/photo/:id/:id path, if you have two columns both named as photo, then the problem occurs I think.

share|improve this answer

I am facing same problem, but my case is different

I upload file through f.file_field and store all params values in session. Then I goes on some other controller and performs some actions there and then try to save object through session values. But It displays the error No Handler found for 'image.jpg'

share|improve this answer

I had <input type="file" ... multiple="multiple"> on file input, so paperclip attachment data was in an array. I solved this simply by removing multiple attribute on file input.

share|improve this answer
2  
This was my problem, as well. I liked the convenience of :multiple => true, but as you say, it sets the name as upload[upload][]. However, I really like the convenience of multiple file selection, so I just set the name manually to not be an array with :name => 'upload[upload]'. – MaffooClock Dec 13 '12 at 14:26
I add multiple with javascript together with jquery fileupload ;) – Mirko Feb 27 at 12:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.