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
0answers
41 views
Paperclip Filesystem permission error [Rails 3.2.2]
Paperclip Filesystem permission error after upload and save the photo in production environment but in development environment all is ok.
rails 3.2.2
ImageMagick 6.5.4-7 2012-05-07
rmagick (2.13.1)
...
0
votes
0answers
33 views
Remove paperclip model name in error message and translate the rest
Using Rails 3.2 and Paperclip 3.3.0. Here is my code:
# photo.rb
class Photo < ActiveRecord::Base
validate :validate_content_type
private
def validate_content_type
if !['image/jpeg', ...
0
votes
0answers
52 views
Builder occasionally generating invalid XML in Rails model
I currently use Builder to generate the XML for my site's video player and Paperclip to save it to Amazon S3. The generation occurs in a before_save callback and the storage occurs during the save.
...
0
votes
1answer
97 views
Paperclip Force Download
Hope anyone can help on this!
Making use of Paperclip to upload Files to an Application, so two things that i need to cover.
1) What is the best way to link to the File for Download, I am currently ...
0
votes
1answer
246 views
Rails 3.x uploading a file via rest-client with S3 :: No such file or dir error
I have a an image file stored on S3. I want to upload that file as form data to a remote site.
Controller line:
response = ...
0
votes
2answers
62 views
Hide the original file (paperclip)
Makes loading custom images, after downloading put a watermark. Paperclip by default puts the files in a folder called styles, such as original, thumb, medium, etc.
I want to hide the original file ...
0
votes
0answers
93 views
Paperclip callbacks and S3 timing out
Hi I'm having a bizarre issue with Paperclip and S3 timing out on a callback.
has_attached_file :file
before_file_post_process :copy_contents_to_db
# Copy the contents of the file to the db
def ...
0
votes
0answers
37 views
Paperclip Plugin with Rails 3.29?
Hi I installed the rails paperclip plugin but get this message when I try create run rails generate paperclip product. Im new to Rails so not sure what I need to do get around this. Below is the ...
1
vote
1answer
191 views
Rails 3 - Paperclip - Email Attachments
Attempting to email a Paperclip attachment in Rails 3.
Invoice model:
class Invoice < ActiveRecord::Base
has_attached_file :attachment,
:url => ...
0
votes
1answer
102 views
Rails, Heroku, Paperclip, S3 and cropping
For my application I need a cropping functionality for images.
I followed the railscast http://railscasts.com/episodes/182-cropping-images
Aaaall works fine on my local machine. I have my owm ...
0
votes
1answer
207 views
Paperclip file size validation error message
validates_attachment_size :image, :less_than => 5.megabytes
gives an error message of
Image file size must be less than 5242880 Bytes
This isn't very user friendly.. Is there a way to make ...
0
votes
0answers
56 views
Multiple different attachments for one model | Paperclip
I would like to have multiple different attachments for my user model, e.g. avatar and cover photo. I'm using paperclip for it.
Currently it is possible to upload a new avatar but everytime I want ...
4
votes
3answers
352 views
Ruby on Rails - Paperclip and dynamic parameters
I'm writing some image upload code for Ruby on Rails with Paperclip, and I've got a working solution but it's very hacky so I'd really appreciate advice on how to better implement it. I have an ...
0
votes
1answer
82 views
Error upgrading to Rails 3.2 with Paperclip: write_inheritable_attribute
I'm upgrading an app from Rails 3.1 to 3.2 and I'm getting:
NoMethodError (undefined method `write_inheritable_attribute' for #<Class:0x0000010a190dd8>):
app/models/test_file.rb:37:in ...
5
votes
1answer
299 views
Using paperclip gem in rails3
Using paperclip gem in rails3, there are two copies of image uploaded simultaneously of which one is having null entries and the other is original in the database as I checked in localhost/phpmyadmin. ...
0
votes
1answer
101 views
ruby copy a paperclip attachment from one model to another?
I have two models like this:-
Model 1 - card - contains a representation of data of interest for front page
attachment name = cardimage
Model 2 - user - contains the user
attachment name = avatar ...
0
votes
0answers
280 views
RMagick, Tempfile, Paperclip: how to save a image file with large dimensions and small kbs as a thumbnail?
I have a Rails rake task that is processing a batch of images. It strips out the white background (using RMagick), replaces it with a transparent layer, writes it to a tempfile and then saves it as a ...
1
vote
1answer
183 views
Upload Csv file in Rails and process records to display on page without saving file
I am in the process of learning rails and am trying to create a file upload page to process csv data without any use of my database or model. I am also trying to avoid using any gems such as paperclip ...
1
vote
1answer
72 views
Upload and render image in nested form RoR
I have two models 1)Posts, 2)Photos and they are associated as follows Posts has many Photos and Photos belongs to Posts. I am using ryanbates nested form gem to generate the form. The Form is setup ...
0
votes
2answers
68 views
Rails - cannot display an image uploaded to Amazon S3
I have these two models:
user:
has_many :commercials, :dependent => :destroy, :inverse_of => :user
commercial:
belongs_to :user, :inverse_of => :commercials
has_attached_file ...
0
votes
0answers
24 views
Why do I get this error when uploading with paperclip?
When I try to upload the image, it shows this error.
User user avatar /tmp/stream20130106-2493-10j1ysy.gif is not
recognized by the 'identify' command.
I found duplicated question here.
rails ...
0
votes
2answers
897 views
Getting Image Paperclip::Errors::NotIdentifiedByImageMagickError after updating to Paperclip 3.4.0
I got the following message after upgrading:
Paperclip 3.0 introduces a non-backward compatible change in your
attachment path. This will help to prevent attachment name clashes
when you have ...
1
vote
0answers
24 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
...
0
votes
2answers
396 views
Uploading to Rackspace Cloud Files with paperclip and fog
Can't figure out how to do this? and couldn't find much help from anywhere else!
I have set up the paperclip and fog like this;
config/initializers/fog.rb
connection = Fog::Storage.new({
...
0
votes
2answers
166 views
paperclip upload a file to S3 from remote_url and token needed
I'm writing an importation function from a remote service to our app which uses S3. I connect to an api using OAuth as authentication, so every request I make I need to attach the token in the header. ...
0
votes
0answers
63 views
Imagemagick commands not working in paperclip
I recently tried to shrink an image to fit in a constrained size and pad with a white background if needed. I get various shapes and sizes submitted and I need it converted to an exact height and ...
3
votes
2answers
98 views
how to hook for destroy of a model that belongs to another model?
I have a User model which has_many experiments:
class User < ActiveRecord::Base
has_many :experiments, :dependent => :destroy
and Experiment model:
class Experiment < ActiveRecord::Base
...
0
votes
1answer
31 views
How can I enlarge both text if 2 annotations are requested in ImageMagick?
My codes are written like this.
It insert "text_here" to the uploaded image file.
This text is in white color with black shadow in behind.
In spite of the fact I'm stating -pointsize 15 twice, it ...
0
votes
1answer
33 views
Rails paperclip - using with files already on my system
I'm using paperclip to manage attachments. This works fine for when the user uploads a file, but we have a feature where a user can select from an image already on our system in a seperate directory ...
1
vote
2answers
47 views
Paperclip. Handling files with identical filenames
If I save two files with similar filenames which will go into the same directory, one will overwrite another. How to make to work the following way, let's say, there is already picture.jpg in a ...
5
votes
1answer
72 views
How can I set up my model with ImageMagick in this case?
I'd like to insert arguement as text onto the image file that user uploads.
With the code below, It doesn't work. It just saves image without any effect.
I'm using the gem called 'papaerclip' for ...
0
votes
0answers
92 views
Rails paperclip NoHandlerError
I'm using paperclip 3.4.0. And I upload dynamic number of images using in view:
<div class="field">
<%= f.label 'Add images' %><br />
<%= ...
0
votes
0answers
76 views
Paperclip + docx gem producing something like !ruby/object:Docx::Containers::TextRun text: exampletext?
I'm using the docx gem to open docx files:
https://github.com/mportiz08/docx
This is my setup (I'm using the Paperclip gem to upload the docx file):
post.rb:
has_attached_file :document
...
0
votes
1answer
44 views
Why is my validation running?
I'm creating objects that have attachments. I'm faking fields by splitting a real field (probably the real source of my problems). Separately, these work fine, but my validations appear to run ...
1
vote
1answer
66 views
How to turn .txt files uploaded with paperclip into raw text?
I added a document column to my Post model, so now I'm able to add txt files to it:
post.rb:
has_attached_file :document
validates_attachment_content_type :document, :content_type => 'text/plain'
...
0
votes
1answer
74 views
Where is Ruby/Rails/Hobo dryml <if> documentation?
I'm trying to port a ruby/rails/hobo app. How do I use the "if" tag in dryml?
<if:dist_image>
<div>
<a href="#{image.url}">
<img src="#{image.url ...
1
vote
0answers
62 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 ...
0
votes
1answer
16 views
How can I make servers separatedl to main server and image store server?
Now I'm trying to make app, in which users can upload their images as much as they want.
The problem is the number of images.
My app will be almost like image uploader so that there will be huge data ...
0
votes
1answer
28 views
Is it possible to put characters onto the image when it's being uploaded using peperclip?
I'm using the gem called paperclip
Now user can upload the images with its function.
Is it possible to put the url of the web site onto this image uploaded when it's being saved into public dir?
-1
votes
1answer
165 views
Multiple Upload Paperclip Rails3
i want to build a gallery so i try to use paperclip to upload picture directly on the website but i can't display the upload button. i have follow different tutorial or example of code found on SO but ...
0
votes
0answers
46 views
With Paperclip, can I use assetable_type in the path?
I'm using Paperclip in a rails 3.2 application with an asset polymorphic model.
All my files are stored with Amazon S3.
I'm using the following path in my paperclip_defaults.rb initializer
path: ...
2
votes
2answers
133 views
Rails paperclip styles not working
I'm trying to apply styles to an image uploaded by paperclip, to save the original and a thumbnail.
has_attached_file :image, styles => { :thumb => "100x100", :original => "100%"},
...
1
vote
1answer
282 views
uploading file with grape and paperclip
I'm working on a REST API, trying to upload a picture of user with:
grape micro-framework
paperclip gem but it's not working, showing this error
rails version is 3.2.8
No handler found for ...
0
votes
1answer
108 views
Rails paperclip - Upload original image and thumbnail
I'd like to upload not only the original image, even create a thumbnail and store both files in S3.
I understood that with the following lines it was fine:
class Asset < ActiveRecord::Base
...
0
votes
1answer
84 views
Admin approve Paperclip images before display
Rails: How can I add admin approve functionality where user uploaded images have to be approved before they are displayed on their profiles?
0
votes
3answers
130 views
After uploading an attachment by Paperclip, how to view the attachment online?
I have uploaded an attachment by using Paperclip, which can be any format from .txt to .cpp, and I want to add a function, which is to view this attachment online. But I don't know where to start? Can ...
0
votes
1answer
30 views
Generated Picture Filesize Upload for RSS
I upload a picture via paperclip (in rails). This picture will appear in the rss feed. For the RSS feed, I need to fill the field length which tells the client the file length I guess.
It would be ...
5
votes
1answer
1k views
Heading into 2013, should I go with Dragonfly or Paperclip or Carrierwave? [closed]
I am just another average joe hoping to jump onto the social network bandwagon. I'd like to know which photo uploading/resizing gem I should use for users of my app. It would be great if you could ...
3
votes
2answers
160 views
Restricting access to Paperclip :original files in S3
How do I restrict any access to the :original styled files in S3 but keep access to the rest of the styles's folders in the bucket?
I saw implementations on how to limit all access and then check on ...
0
votes
0answers
77 views
Rail3 - Paperclip/ImageMagick - How to process any image in a model's styles
I want to create missing.jpg images but I don't want to use picasa or some other program to resize and process them.
Is there a way to use paperclip's styles of a model to process an image locally ...