Tagged Questions
0
votes
0answers
9 views
Paperclip: rake aborted for rake paperclip:refresh class=Photo
Currently, i have changed styles of my Photo class. To reflect those changes, I am trying to execute this command on ubuntu terminal:
rake paperclip:refresh class=Photo
But it is giving error
...
0
votes
1answer
19 views
Paperclip S3 encryption rails
Mine is more of a question than a code problem, I have been trying to read about this for a while and I have not found an answer. My question is if amazon S3 automatically encrypts the data when it is ...
0
votes
1answer
41 views
Handle a folder like paperclip “system” folder, symlinked in shared
I have a folder of uploaded assets (through paperclip) by a gem, which are stored in a different folder ckeditor_assets.
I would like to handle this folder with capistrano in the exact same way the ...
0
votes
0answers
26 views
Paperclip and nested attributes - not writing to the database
I'm trying to upload multiple files on a form. I followed the rail casts for paperclip and nested attributes, and also this tutorial ...
0
votes
1answer
38 views
Rails: Using filepicker with paperclip installed
I am using paperclip to upload photos in my rails app. Recently i came across filepicker and want to integrate it in my app.
As I am already using paperclip, will install filepicker gem create any ...
0
votes
1answer
61 views
Rails: Having issues redirecting after cropping image with Jcrop & paperclip
I am trying to implement Jcrop for Paperclip and I am 99% done. I am able to crop the image and store it. The issue is that after the image is cropped and stored it again takes me to the Crop action ...
0
votes
0answers
65 views
Rails + Paperclip + S3 corrupt files
I'm following along with this tutorial and building a rails file sharing app using paperclip and S3. The file upload to S3 is working perfectly, I can see the files on S3 but when I download them they ...
0
votes
1answer
54 views
Rails: prevent submitting form if field is blank
I am creating product page, where user can upload more than one photo of product. To create and edit product, i am rendering a form file. For uploading photos, i have used nested_fields for photos in ...
1
vote
2answers
112 views
Paperclip multiple file upload
I have three model:
class Project < ActiveRecord::Base
attr_accessible :name
has_many :tickets, dependent: :delete_all
end
class Ticket < ActiveRecord::Base
belongs_to :project
...
0
votes
0answers
87 views
Paperclip s3 big files upload
I have Rails app (shelfy.net) which is about uploading pdf files on cloud. I use paperclip and amazon s3. However I have problem for more than 40mb files. When I am trying to upload after 10 seconds, ...
3
votes
2answers
106 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
0answers
97 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 ...
0
votes
0answers
24 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
1answer
79 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
...
3
votes
1answer
109 views
Paperclip gives error when image is not uploaded
Paperclip works fine when I upload an image and then display it with:
<%= image_tag @post.photo.url(:medium) %>
The problem is, if an image wasn't uploaded, I get this error:
NoMethodError ...
0
votes
1answer
102 views
Modifying Devise's form_for to make Paperclip work?
I'm a bit confused.
This is the form_for in the Getting Started section of Paperclip's Github repository:
<%= form_for @user, :url => users_path, :html => { :multipart => true } do ...
0
votes
1answer
284 views
Error processing Spree sample images - file not recognized by identify command in paperclip geometry.rb:29
I'm getting an error when I run the Spree sample data. It occurs when Spree tries to load in the product data, specifically the product images. Here's the error I'm getting:
* Execute db:load_file
...
0
votes
1answer
285 views
rails 3.2 skip paperclip attachment presence validation on edit action
I am new to Rails and i'm working on my first rails application that uses paperclip for attachments and i'm validating the presence of attachment using validates_attachment :avatar, presence: true ...
1
vote
1answer
215 views
Rspec, Paperclip, Fabrication, valid object without saving to filesystem
I have a rails 3.2 app with paperclip 3.2 and I have a model that has a required paperclip attachment(thumb). How can I create valid objects without having the file saved to the filesystem or S3. ...
0
votes
1answer
133 views
Prettyphoto and Rails
I am trying to get prettyphoto to work within my rails app. I would like to have an image display in prettyphoto that is uploaded by the paperclip gem.
I am running rails 3.2.8, paperclip 3.1.4, and ...
0
votes
0answers
48 views
Save the url of attachment in a separate field when using Paperclip
I wonder if it is possible to save the URL of an attachment uploaded using Paperclip to a different model field. The model already has a URL field that is used to store the URL of images and videos. I ...
1
vote
2answers
342 views
Paperclip is throwing a strange error all of a sudden after update
I can no longer render pages with paperclip urls in my Rails application. I recently updated my gem bundle. I'm using Rails 3.2.8 and Paperclip 3.1.4. I was using Paperclip 2.7.0 before.
The link in ...
1
vote
1answer
160 views
paperclip not saving attachment in production
In my development environment I am able to create a download using paperclip successfully. In production the download will be created but the link to download does not work.
link that is created in ...
0
votes
1answer
561 views
Paperclip Errno::EACCES (Permission denied - /system)
My production environment is : ruby 1.9.2-p320 , rails 3.2.7, paperclip 3.1.4, mysql, Ubuntu 8.10 x86 64bit.
I have a Errno:EACCES Permission denied /system error when i try to upload a file with ...
1
vote
1answer
701 views
Paperclip S3 image path issue
I've just upgraded from Rails 3.1 to Rails 3.2.6 and my paperclip photo paths are now broken on production.
photo.rb
if Rails.env == "production"
has_attached_file :image,
:storage => :s3,
...
0
votes
1answer
66 views
How to link to to page in a one-to-many relationship?
I am using paperclip and rails. I followed this tutorial:
Multiple File Uploads with Paperclip & Rails 3 (Screencast)
I have a gallery model that has many galleryphotos.
Instead of linking to ...
2
votes
0answers
193 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). ...
0
votes
1answer
384 views
Can't mass assign virtual attributes when trying to add Jcrop to Paperclip
I'm trying to get cropping working with Paperclip and have been following along Ryan Bates' solution here.
It works fine until I submit the form and receive a mass-assignment error Can't mass-assign ...
2
votes
1answer
164 views
Resize missing.png depending upon style in paperclip
I'm using Paperclip to upload a image
here my paperclip configuration
has_attached_file :avatar,
:path => ":rails_root/public/users/:id/avatar/:style/avatar.jpg",
...
0
votes
1answer
125 views
Strange :id in :path with Mongoid-Paperclip — /4f8b/5a82/ef1a/7750/b800/0077/
I've just upgraded from Rails 3.1.3 to 3.2.3 and noticed that browser doesn't show images anymore. So I looked to images path and it is ...
-1
votes
2answers
81 views
Sort images by rating
Every picture has a rating from 1 to 5. I want to sort them by rating (for example: every picture with rating 5 shows on top, with rating 4 under 5, etc.)
2
votes
1answer
85 views
Is it possible to update more than one database table with one form submission in ruby on rails?
Let's say:
[ Micropost ] -> has_one -> [ MicropostPhotoAlbum ] -> has_many -> [ MicropostPhotos ]
If Micropost had one photo it wouldn't need a MicropostPhotoAlbum and I could just add an "image" ...
2
votes
2answers
299 views
Rails 3.2 Paperclip S3 Not Loading in Localhost
I just upgraded to Rails 3.2 and I'm using Amazon S3 with Paperclip to upload photos to my app.
Before my Image Urls would be:
...
0
votes
2answers
152 views
rails 3 : paperclip : undefined method logo
In model I have something like
has_attached_file :logo, something_here
Code/ Uploading logo is working fine, but I need dimensions before uploading the logo.
So when I am using geometry, error is ...
0
votes
1answer
150 views
rails form_helper could not find path for model in edit page
I have Picture model it contain 2 fields photo and description (photo is field from papperclip gem)
and I have PicturesController contain new create edit update destroy and show
I already declare in ...
6
votes
1answer
542 views
Errors::SignatureDoesNotMatch, AWS-SDK gem for S3 support on paperclip 3.0.1 and rails 3.2
I'm migrating my app from Rails 3.0.9 to 3.2.3 and ruby 1.9.3. I was using paperclip(2.3.11) with aws-s3 gem to store my pictures.
Now I want to use the last version of paperclip(3.0.1) and then I ...
