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.
0
votes
1answer
182 views
paperclip renaming stringio.txt using instance_write
I am using omniauth-facebook and trying to get the profile picture to show up using paperclip. Here is the code I use to get the picture to my User model
def picture_from_url(url)
...
1
vote
1answer
67 views
Nested model with paperclip fails during build process
I am using Asset and sub-Asset models as models to hold images. I have Product model that has many assets, but uploading an image fails at the build process right before saving Product model.
...
0
votes
0answers
86 views
Customize file's path in Amazon S3-rails3
I developed an application in Rails3 using Mongodb and to upload images I'm using mongodb-paperclip and followed the instructions https://github.com/meskyanichi/mongoid-paperclip
I can upload images ...
2
votes
1answer
180 views
Wrong url from image_tag and paperclip in Rails
I use Paperclip gem in my Rails app for image uploading.
But in views there aren't images. The path of missing images is "http://localhost:3000/assets/".
Here is the code:
<div ...
0
votes
0answers
107 views
rails paperclip doesn't save db
I'm trying to attach a picture to my micropost with paperclip.
I've added to my gemfile
gem "paperclip", "~> 3.0"
Run bundle install.
Created the migration rails generate paperclip micropost ...
0
votes
0answers
87 views
Delayed_Paperclip job complete
I am currently using delayed and it is up and running successfully. However, I can't seem to add a hook for when the jobs are completed from resque. The code I have currently is listening to the ...
0
votes
0answers
99 views
Rails, creating ZIP file in production not going as in development
In a previous question i wanted to zip all files on my s3 bucket and send as response to the client. Works fine in development but in production i get something like:
Errno::ENOENT (No such file or ...
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 ...
0
votes
1answer
136 views
Paperclip does not recognize UTF-8 filenames with identify command
When i try to upload a file with UTF-8 characters in the name (for instance, cyrillic symbols), i get this error thrown by paperclip:
[2012/12/11 17:01:45] (INFO) 26707 Command :: identify -format ...
4
votes
1answer
164 views
Avatar is not getting uploaded using paperclip and aws-sdk gem
I have a problem with my avatar upload. It worked once for me but I must be blind this time.
I am using paperclip and aws-sdk gem and set up everything as described here.
I have tested it with 2 ...
0
votes
1answer
168 views
How to use WebMock to mock Paperclip call in a Sinatra app?
This code works fine without WebMock.
Raising an exception:
Paperclip::AdapterRegistry::NoHandlerError:
No handler found for #<URI::HTTP:0x007ff3852cefb8 ...
0
votes
1answer
154 views
Rails 3 PaperClip NoHandlerError
I am using paperclip to manage profile picture uploads and jasny bootstrap for the css/js. I am able to upload profile pictures and submit my form without selecting a file without any issues. ...
1
vote
1answer
166 views
ruby paperclip error was received while processing .. not recognized by the 'identify' command - was working
I recently updated my working site and paperclip stopped working. Some invesigation showed this in the logs:
[paperclip] An error was received while processing:
...
0
votes
1answer
228 views
sh: ffmpeg: not found on Heroku
I am using paperclip gem and piperclip-ffmpeg on a Rails 3.1 setup.
After deploying to Heroku, I am getting this error after uploading a video.
sh: ffmpeg: not found on Heroku
My Model
class ...
1
vote
1answer
81 views
Paperclip + S3 massive zipping
If you got Paperclip + AWS S3 working in your rails 3 application and you want to zip attachments related to a model how to proceed?
1
vote
1answer
122 views
Save CSV file in paperclip attachment (No handler found for <#CSV io_type:File io_path)
I have a file created by CSV.open(..., "w", ...) that I've written data to, referenced by @summary_data, and now want to save as a paperclip attachment in my_model. What's the correct syntax, I tried:
...
4
votes
1answer
529 views
Rails 3 - use json to upload image
In my Rails 3 application I have multiple models, and each model is associated with another model.
User model
has_many :departments
accepts_nested_attributes_for :departments
Department Model
...
1
vote
1answer
120 views
How to use original image url in paperclip
What is the original path of image that uploaded by paperclip.
has_attached_file :attachment,
:url => ":rails_root/public/photos/images/:id/:style/:basename.:extension",
:default ...
0
votes
2answers
116 views
Rails paperclip multiple attachment - Getting attached files
I've achieved to upload multiple images using paperclip.
And are stored to a private path:
:path => ":rails_root/data/images/:id/:basename.:extension"
Now I would like send them with a restful ...
0
votes
1answer
320 views
Rails paperclip - Attach multiple images
I'm trying to attach with paperclip a multiple number of images to a component.
As this tutorial
http://www.tkalin.com/blog_posts/multiple-file-upload-with-rails-3-2-paperclip-html5-and-no-javascript
...
0
votes
1answer
143 views
Development error using paperclip and Amazon s3
I have my app running on heroku and have configured to save all assets uploaded to a bucket using Amazon s3.That all works fine. So when i tried to upload an image locally (development) i get the ...
1
vote
1answer
443 views
Paperclip: undefined method `exitstatus' for nil:NilClass
I'm trying to use paperclip to handle image file uploads to S3. In my user model:
validates_attachment :avatar, :content_type => { :content_type => ["image/jpg", "image/png"] }, :size => { ...
2
votes
1answer
212 views
Paperclip, s3 fail to upload but didn't show any errors
I've been searching for solutions in similar topics of this but I can't get it to work somehow.
This is my application log
Command :: identify -format %wx%h '/tmp/0120121215-31657-19vihny.jpg[0]'
...
0
votes
2answers
63 views
Paper clip image showing up in wrong place
Hey i have a rails app that i am uploading images with paperclip....
So i have a comic_review scaffold that i upload images of comic covers and i also have a news scaffold where i post news and ...
0
votes
0answers
101 views
Rails paperclip - Adding dynamic multiple images
I'm trying to add a dynamic number of pictures to an element called "component".
Looking around I've created this code:
component.rb
class Component < ActiveRecord::Base
has_many :images
...
0
votes
0answers
37 views
how we update an existing image object in s3 bucket with another image object of a different model
i am using rails 2.3.8.Using rails paperclip to store images in s3 bucket.
i have 2 models.
1)
class Company < ActiveRecord::Base
has_many :images , :dependent => :destroy
...
0
votes
1answer
57 views
imagemagick 'identify command' error only from safari when uploading photo after processing
I believe this error is a problem with my javascript in Safari (and mobile safari) as I can upload photos from chrome no problem.
What I've got is a web-based mobile app, and users need to be able ...
0
votes
1answer
85 views
Paperclip photo upload via RestKit or any HTTP request
I'm using mongoid-paperclip to upload images on amazon s3, and it is working fine on the web using multipart/form-data.
But when I try to upload images using HTTP PUT request using CURL or RestKit ...
1
vote
1answer
297 views
undefined method `send_data' for main:Object
I am trying to download the data stored amazon s3 bucket using paperclip and aws-sdk gem. Object is publicly accessible.
I am having a method in my controller where I intend do download the data ...
0
votes
0answers
155 views
Rails - paperclip gem image cropping and resizing
I'd like to be able to take crops of images uploaded through paperclip in a quite specific way:
First, crop the image down to the center 50% (lose 25% from all edges towards the center) without ...
0
votes
0answers
64 views
Rails, paperclip and s3, prompt download or view images?
So i got successfully working Paperclip and S3 uploading in RoR 3, but it turns out that some images are prompted to download and others can be viewed in the browser. What determines this behaviour?
2
votes
1answer
110 views
How to call an `f.action` to a custom :delete callback in an Active Admin form
In order to remove (paperclip) images from my objects, I have a custom callback (and route) defined:
ActiveAdmin.register Camping do
#...
member_action :destroy_image, :method => :delete do
...
1
vote
0answers
65 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 ...
0
votes
1answer
105 views
delayed_job not working on paperclip
I have this simply method that check against a URL existence and if not present try to create the photo object.
def create_profile_photo(user_id,image_url)
if ...
0
votes
1answer
63 views
Rails - Functional test failing because of validation
I can't for the life of me figure out what's going wrong here. This is the situation:
I have a document model using paperclip for pdf attachments
The functional test uploads a document and ...
0
votes
0answers
59 views
rails 3 paperclip watermark
Im looking for a watermark processor which works with filenames contains whitespaces and non alfanum chars. On the internet I have found bunch of classes but no one works correctly.
best regards
0
votes
2answers
99 views
rails 3 paperclip processor watermark error in filename
I have a problem with paperclip in rails 3. When I upload a file my processor throws error because imagemagick get command:
"composite -gravity South /home/xxx/xxx/public/images/watermark.png /tmp/a ...
0
votes
1answer
117 views
Paperclip deprecated method
I upgraded my rails app from rails 2.3.14 to rails 3.2.6. In my model i have the following method that is being called from my view for image editing purpose.
def logo_geometry(style = :original)
...
2
votes
2answers
237 views
Paperclip, uninitialized constant Paperclip::Storage::Fog::Excon
I just installed paperclip on Ubuntu with rails 3.2.9 and I cannot upload images.
The message I get is uninitialized constant Paperclip::Storage::Fog::Excon.
Any explanation for this?
0
votes
2answers
183 views
after_update callback causing never ending loop in a model
My model's cropping method is called in a loop which never ends after I update the attributes of user in the controller.
User controller code-
def change_img
@user = current_user
...
1
vote
0answers
171 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 ...
0
votes
0answers
21 views
how to use “form_for” for paperclip gem in an existing rails app?
Im having a hard time understanding how to use "form_for"
here is what I got in my view:
<%= form_for(:pictures, :html => { :multipart => true }) do |x| %>
<%= x.file_field ...
0
votes
0answers
89 views
paperclip doesn't work
I have a rails project, i want to upload some file include image to the website. I using paperclip according the document, but it doesn't work. I can't upload any files, but the web page do not show ...
0
votes
1answer
51 views
Determining Image presence and absence that has certain style - Paperclip rails
Is there a way to determine the presence of certain image that has certain style attribute.
For example to determine image existence that has no style, we generally do -
<% if ...
0
votes
2answers
240 views
Image upload error with Paperclip- Rails
I am unable to upload the image as I am getting error in upload method of
user controller at line number 3 i.e. for @user.update_attributes(params[:user]).
My upload method code -
def upload
...
0
votes
1answer
54 views
Paperclip fails to set attachment_content_type for files without extentions
I'm using rails 3 + paperclip + s3 (private bucket) to allow users to upload a file.
What's broken is user's can upload files w/o extentions like the rails gemfile which is just "gemfile" not ...
0
votes
1answer
76 views
Save the file manually using paperclip from the params, without scaffold
I am new to rails, I was working on paperclip gem and wanted to save the simple files, saved from paperclip.
I have the My model as follow :-
class UserAttachment < ActiveRecord::Base
...
1
vote
1answer
233 views
Rails paperclip gem - Get file from private folder
I'm using paperclip to upload files to my server.
If I don't specify the path, paperclip saves the file to a public folder, and then I can download it by accessing <%= @user.file.url %> in the ...
1
vote
0answers
134 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 ...
0
votes
1answer
138 views
Trying to set up jQuery File Upload to show the picture that was just uploaded
I'm following Railscasts Episode #381 to set up jQuery File Upload to upload files to the server on Rails 3.
Right I have it fully functional using jQuery File Upload + Paperclip.
Works fine. But I ...