in Rails 2.3.6 I have a User model:开发者_StackOverflow class User < ActiveRecord::Base has_attached_file :avatar,
I\'m trying to upload a file using paperclip in a production envir开发者_StackOverflow中文版onment in Heroku and the log files show:
Is it possible to have multiple storage types with the Paperclip gem? I need to be able to POST a file that a user has uploaded. Currently I am using :s3 storage option. This seems like there is extr
I used rmagick in Rails to convert images I upload from one file type to JPEG. I can make it call from the new image now; I did:
i\'m trying simply to upload a file using uploadify and paperclip. This is index view: <%- session_key = Rails.application.config.session_options[:key] -%>
I\'m trying to upload a video using uploadify and paperclip on rail 3.1 When i upload a video with uploadify, the server returns an 500 error.
I\'ve been following https://github.com/thoughtbot/paperclip/wiki/Restricting-Access-to-Objects-Stored-on-Amazon-S3
I have a very strange problem with an thumbnail image, which generates from an uploaded PDF via paperclip in a rails app. The uploaded files are stored on Amazon S3. Paperclip generates a thumbnail im
I have a model, \"Update\" which has_many \"Assets\". An Asset has has_attached_file of :asset, using Paperclip.
I\'m using paperclip to allow user to upload images and I want to convert an image into jpg/png only if it\'s a tiff image.