Below is my validations for image content type which works fine. validates_attachment_size :icon, :less_than => MAX_SIZE.megabytes, :message => \"Max size is 1 mb\"
Paperclip stores original images in \"original\" folder. Is there a way to resize the original images? I want to make the originals smaller in order to save the disc space.
After I regi开发者_开发技巧ster a user, the request goes through and says that the registration was successful, but instead of the resized image appearing, the file name is the only thing that appears
So I have been trying to follow some paperclip tutorials and adjusting them to rails 3. I follow the steps and got an error once I started to add the code needed for the _form and show.htm.erb files.
Im not going to start by saying i\'m a newbie etc. Jokes, been learning Rails fornearly month using Lynda.com.I use Mac, Mac OS X Lion 10.7.
I\'m working with Rails 3.0.9 and Ruby 1.9.2. I am running the gem Paperclip to upload images, and this works fine.
I\'ve been struggling with this for hours. For some background, I have paperclip set up, keeping in mind that I may one day want to add multiple attachments. I followed Emerson\'s screencast to help m
Paperclip is not saving any changes in the uploaded images but is saving original perfectly well. MY understanding from all the logs is that it cannot access ImageMagick... I have install RMagick alon
I am trying to retrieve the content-type and filename of an image which i am receiving in base64 encoded format.
I\'m getting some truly bizarre behavior. Essentially, when I go to batch upload files, each file will alternate, starting with an HTTP Error, then following with an IO error on the next file. Even mo