Paperclip is a library for the Ruby on Rails framework which makes dealing with file attachments easier. In addition to dealing with standalone files, the library provides convenience methods for creating image thumbnails.

learn more… | top users | synonyms

5
votes
0answers
431 views

Paperclip/Rspec tests: Is there a faster way to test paperclip validates_attachment_content_type?

One thing I've noticed is that in most of the projects I do, the one spec that always takes a long time (30 seconds +) is this shoulda/paperclip helper: it { should ...
4
votes
0answers
300 views

Rails' Paperclip gem POSTing instead of PUTting when uploading .zip file

I've got a form (Rails 3.2.8, Paperclip 3.1.4) with two Paperclip attachments for a model with two has_attached_files. One is meant to be an image, the other a generic file, usually a .zip file. ...
2
votes
0answers
36 views

How do I resolve a neverending attachment migration?

I'm trying to use Paperclip + Rails 3 + Heroku + AWS so i tried to add some columns to my User model to store users avatars. My migration looks like this: class AddAvatarColumnsToUsers < ...
2
votes
0answers
67 views

I want to understand how the Paperclip gem handles s3 down time

I hope that this question does not have an extremely simple answer that I have completely overlooked. My question is how does the paperclip gem handle s3 down time? What is the flow if a user ...
2
votes
0answers
208 views

Paperclip - get image path without ActiveRecord model

In a specific view, I am rendering an array of POROs created from a SQL query (this is for performance reasons, having ActiveRecord models here would be a major performance problem). In that view, I ...
2
votes
0answers
164 views

Rails + Paperclip + S3 on Heroku upload error

I'm trying to build an app where users can upload a profile picture. I'm trying to use Paperclip and S3. I've got it working on my local machine, but for some reason it doesn't work on Heroku. ...
2
votes
0answers
271 views

Rails 3 Paperclip image not saved in a nested form using Active Admin

I have models product and product images. Product_images is a paperclip model. Product has many product_images. I am making an Active Admin form which uploads multiple images and shows these images to ...
2
votes
0answers
178 views

Ckeditor 3.7.1 + Paperclip (Absolute Paths in Email)

I have installed the ckeditor 3.7.1 and Paperclip gems (gem 'ckeditor', '3.7.1' gem 'paperclip') in Rails 3.2.3 by following the instructions posted on github (https://github.com/galetahub/ckeditor). ...
2
votes
0answers
279 views

Slow s3 url generating paperclip

We are trying to optimize our views and on a page where 40 pictures are loaded with the following code : = image_tag(product.pictures.first.data.url(:gallery)) We have a load time of 840ms, if we ...
2
votes
0answers
235 views

Heroku, S3, Paperclip one model uploads fine, the other doesn't no errors

Alright so I have 2 models with uploads, an Auction and a User. I'm using Paperclip, Rails 3.2, and Ruby 1.9.3. The platform is Heroku Cedar. Here's the credential details: S3_BUCKET = ...
2
votes
0answers
118 views

Paperclip Error while uploading image from mobile application

I am getting following error when uploading image from mobile application [paperclip] An error was received while processing: #<Paperclip::NotIdentifiedByImageMagickError: ...
2
votes
0answers
160 views

Paperclip to s3 quickly and without

I have an application where I allow people to upload images and then resize them. It is written in rails and is largely based on http://railscasts.com/episodes/182-cropping-images It is currently ...
2
votes
0answers
271 views

paperclip possible to specify single hash for different styles (thumbnail / original)

I have the following model and would like my files to be uploaded like so: /images/1/123abc_name_original.jpg /images/1/123abc_name_medium.jpg /images/1/123abc_name_thumb.jpg If I used as below, ...
2
votes
0answers
147 views

delayed_paperclip and load balancer

It seems paperclip and/or delayed_paperclip saves a temporary file on local web server fs before upload it to S3 or Rackspace Cloud File (i'm using fog.io). If you have a worker for delayed_job on a ...
2
votes
0answers
450 views

Paperclip attachment size validation fails, but size is valid?

My model class Article < ActiveRecord::Base LOGO_TYPES = ['image/jpeg', 'image/png', 'image/gif'] VALID_LOGO_MESSAGE = 'Please attach a valid picture file containing your organization logo. ...
2
votes
0answers
341 views

I/O Error with uploadify in ruby on rails

I'm trying to upload a image using uploadify and paperclip on rail 3.0.9 When i upload a image with uploadify, the server returns an I/O error. The development.log says: Started POST "/user/albums" ...
2
votes
0answers
142 views

Rails : Replace Attachment_fu DB with Paperclip S3

I replaced my attachment_fu with paperclip S3. I am facing problem of transferring my old data which was in database tables to S3 buckets. What would the best solution of doing these. Provide some ...
2
votes
0answers
162 views

Rails example applications or plugins/gems for doing photo album in multiple files upload?

I would like to know is there any Rails example applications or plugins/gems for doing photo albums in multiple file upload? It could have basic functionality like create/edit a album with multiple ...
2
votes
0answers
258 views

Error with Paperclip and RSpec 2.6

I'm trying to testing the paperclip methods in my model and I got the following problem: 1) InventoryImportRequest Failure/Error: it { should have_attached_file(:file) } NoMethodError: undefined ...
2
votes
0answers
360 views

why doesn't 'which identify' work for ImageMagick on Windows machine?

I'm trying to get paperclip and ImageMagick to work on a Windows 7 machine using Ruby 1.9.2 and rails 3.0.7. ImageMagick appears to have installed fine, since I did the imdisplay command that the ...
2
votes
0answers
373 views

Sporadically images uploaded to S3 with aws-s3 & paperclip gems have a AccessDenied error when trying to view them. 99% work fine though?

I am using the aws-s3 & paperclip gems to upload images from my Rails app. The images always get uploaded correctly, and 99% of the images can be viewed fine from my web-app. But sometimes, an ...
2
votes
0answers
236 views

file not being saved to S3 with paperclip amazon configuration

I am developing a Rails 3 app that has user upload for there profile picture. I have followed a number of online configurations and I think I am really close to getting it working but I can't seem to ...
2
votes
0answers
510 views

fakefs + paperclip on rails3 + rspec2 will give me an error “cannot generate tempfile”

rails (3.0.1) fakefs (0.2.1) paperclip (2.3.4) rspec (2.0.1) I am testing my model with rspec. Since this is a test, I want to prevent any file creations under the public directory as paperclip ...
2
votes
0answers
858 views

rails PaperClip / S3 / ImageMagick

I'm using paperclip in my rails 3 app to upload photos, resize with ImageMagick and then post to S3. For the life of me, I can't figure out why this process is soooo slow on my localhost? Even ...
1
vote
0answers
46 views

Network Error: with Paperclip, S3 settings

For development mode - it uses local path: url: "/system/documents/:id/:filename", path: "same to local path" for only production mode, it checks the s3 storage: :s3, s3_credentials: it's working ...
1
vote
0answers
13 views

Reduce paperclip attachment image by 37.5%

I'm using paperclip in a Rails app to upload an image to S3. My has_attached_file in the model looks like this (left out some other details): has_attached_file :media, :styles => ...
1
vote
0answers
80 views

Rails PaperClip drag and drop multiple files

I am using PaperClip with Rails to upload files and it works fine, however it would like to implment a drag and drop fileupload that allows for uploading of multiple files. and that each file shoudn't ...
1
vote
0answers
18 views

style option breaking paperclip

In my gemfile i have gem "paperclip", :git => "git://github.com/thoughtbot/paperclip.git" and gem "cocaine", "~> 0.5.1" (Other questions that report cocaine broke paperclip have been fixed in ...
1
vote
0answers
60 views

Rails + Paperclip + AWS: After watermark is added, new picture is not sent to Amazon s3

I added watermark processor for one size of image. But, all other versions of picture are uploaded to S3, except this one. I believe I had to notify AWS that I changed this size but I do not know how ...
1
vote
0answers
80 views

Paperclip error on upload 401

When using paperclip with S3, I'm getting this error: head_object(:bucket_name=>"appname",:key=>"users/images/000/000/001/medium/576704_241627829270747_1863181062_n.png") ...
1
vote
0answers
31 views

How to upload files to a mounted network folder using paperclip?

I have a folder myfiles under the a mounted network drive. I can access it using \\networkdrive\myfiles in the Windows explorer and I have full access to it. I specify this in my model: ...
1
vote
0answers
72 views

Is it possible to use Amazon Cloudfront sign URLs for attachments using Paperclip

I am using Paperclip to store image attachments on Amazon S3 and deliver them through Cloudfront. I was looking around and was unable to find examples of it being used with signed URL's to protect the ...
1
vote
0answers
88 views

Paperclip usage with form_tag in rails

I'm attempting to get paperclip working with a rails application, and have been unsuccessful so far. Please help me do so; I've included what I think to be the relevant information below, and will be ...
1
vote
0answers
23 views

How can I add variable as text annotation into convert option?

I want to insert UserProfile.nickname as text annotation into convert option. This is what I have now. How can I fix this? user_profile.rb before_save :text_to_insert def text_to_insert ...
1
vote
0answers
61 views

How can I allow image file upload to paperclip when the user uploads from Android?

I just noticed that the file type will be this when the user uploads file from Android's default browser. application/octet-stream But this file type means various types of file so that ...
1
vote
0answers
74 views

RMagick > ImageMagick // identify not working in rails app

Something I don't really get… When I do a $ convert file.jpg file2.jpg everything works fine. It used to work perfectly too with paperclip from within a rails app. But for a newly deployed rails ...
1
vote
0answers
64 views

How to make paperclip s3_host_alias available for each environment

I currently have something like this on my has_attached_file declaration, # Photo.rb ... :s3_host_alias => 'cdn.mydomain.com' Since the s3_host_alias points to a specific bucket that varies on ...
1
vote
0answers
170 views

Image cropping with paperclip 3.3.1 in rails

I have followed the cropping tutorial http://asciicasts.com/episodes/182-cropping-images. Everything worked fine, image uploaded successfully but cropping is not working. When I select certain region ...
1
vote
0answers
133 views

Rails custom update action generates get request

I'm using Paperclip to store images for records called 'Expense' - images are of receipts for the expense. Everything works find, but when I go to edit an expense, I want to have a link to delete ...
1
vote
0answers
118 views

Use paprrclip to convert pdf to jpg using a ghostscript.rb script

I am trying to use the following script to generate jpgs for pdf files without success. https://gist.github.com/3059321 I am hoping someone can provide me with a little bit of assistance in making ...
1
vote
0answers
197 views

Paperclip tries to upload image with content length 0

I'm trying to upload an image using paperclip and the AWS S3 storage I've set the default configuration for paperclip config.paperclip_defaults = { :storage => :s3, :bucket => ...
1
vote
0answers
48 views

paperclip gem the file size column isn't correct

i'm using the paperclip gem to store files (photo, video, audio, etc.) the file size is set to zero for most of the file uploads. couple of the jpeg uploads have the right file size. anyone seen this ...
1
vote
0answers
142 views

How to encrypt paperclip attachments before uploading them to S3?

I'm working on a Ruby on Rails web app. The user can upload files and they get stored to Amazons S3. For file uploads I use the paperclip gem. How can I encrypt files with AES256 before they get ...
1
vote
0answers
142 views

Paperclip with s3 not working with Heroku

I'm using Paperclip and s3 for photo uploads for my Rails app. It works in development but not in production. When I try to upload a photo, I get the generic Heroku error message: "Something went ...
1
vote
0answers
124 views

Paperclip Rails url and asset_host

According to the Paperclip S3 Docs one can specify the :url option in the config which has four possible values. There are comments related to this options that say: The fourth option for the S3 ...
1
vote
0answers
78 views

Paperclip, copy image without reprocessing it

When I copy a paperclip attachment it applies the default cropping defined in the style and ignores the cropper I have installed for cropping on the site via user input (CropperJs). What I need is ...
1
vote
0answers
77 views

How do I create a Paperclip attachment (from raw bytes? (maybe)) without having the file stored on disk?

This works (but seems tedious): File.new("temp.pdf", "w").close File.open("temp.pdf", "w+") do |f| f.write(response.body) pdf = PDF.new({ :document => f, }) pdf.save ...
1
vote
0answers
149 views

Rails: Storing .pdf files in dropbox

I am using the paperclip, dropbox, and paperclipdropbox gems in an effort to upload and download old exams (.pdfs) from a single dropbox account to avoid paying for Amazon S3 services. I am able to ...
1
vote
0answers
188 views

Can't attach image with Paperclip via Amazon S3

I'm having a hard time trying to make Paperclip uploads to Amazon S3 via the fog gem. You see, I'm using Heroku so that's the way to go. The problem is: I configured the app to send the uploads to my ...
1
vote
0answers
157 views

update_attributes() not working for nested attributes and paperclip?

My model describes paragraphs and images, where each paragraph has_many images. For the image handling, I use paperclip. For mass assignment, I use the images as nested_attributes of a paragraph. The ...

1 2 3 4 5 12