0
votes
0answers
5 views

Paperclip : wrong bucket being used from yml

This has worked before, or so I believe. For some reason, in my development environment, and even staging, Paperclip is using my production bucket instead of the development bucket. Here is the part ...
0
votes
0answers
6 views

paperclip | bad images fingerprint link after migration to new server

Moved from one server to another: -deployed project -exported/imported db -copy public/system folder Old version http://arteslav.babrovka.locum.ru/products New version http://arteslav.ru/products ...
0
votes
0answers
17 views

Intermittant EOFError when downloading file via ruby OpenURI

I have a setup where a cron job periodically downloads an mp3 file from an external service (Twilio) and then uses Paperclip to upload the file to Amazon S3. The process is handled in the background ...
0
votes
0answers
17 views

Wasted an entire day on saving an image via URL to s3 using Rails

I am using pismo to get an image url from a website. That is working fine. Knowing what I am supposed to do from there has proven incredibly difficult. I am sure I must be missing something. Many, ...
0
votes
0answers
13 views

Paperclip validates_attachment_presence test fail

In a Rails 3.2.13 app running paperclip 3.4.2 I have the following: /app/models/slide.rb class Slide < ActiveRecord::Base attr_accessible :caption, :slide_image belongs_to :slide_show, ...
1
vote
1answer
20 views

Get fullpath from paperclip

I have paperclip, but its url method returns only the path not the full url. I want to construct the full url from that paperclip. Beside doing string concatenation, is there a better way to create ...
0
votes
0answers
11 views

Paperclip::AdapterRegistry::NoHandlerError

Hey I am try to crop the image I am using paperclip gem + jqupload initially i was following railscasts #182 video i followed every step correctly but that also it gave me error: ...
0
votes
2answers
56 views

Ruby paperclip: says it needs version >= 1.9.2, but I have 1.9.3

I'm not sure what's going on here. $ sudo gem install paperclip ERROR: Error installing paperclip: paperclip requires Ruby version >= 1.9.2. $ ruby --version ruby 1.9.3p429 (2013-05-15 ...
0
votes
1answer
34 views

How delete paperclip item with checkbox

I have the next code in a partial _form of my view: <%= f.label :logo %><br /> <% if f.object.new_record? %> <%= f.file_field :logo %> <% elsif %> <%= link_to ...
0
votes
1answer
45 views

Ruby on Rails Paperclip avatar, undefined method `model_name' for NilClass:Class

I was on Railstutrial on chapter 7 where it tries to add user avatars. I tried to use paperclip to let users upload their own avatar, instead of using default book guid on using gravatar in ...
0
votes
2answers
39 views

Nokogiri+Paperclip = XML parse with img from url

I need to parse some params to my DB and image from URL. I use paperclip for image. In Rails console I can add image to new post by this code: image = Image.new image.image_from_url ...
0
votes
0answers
14 views

bson_dump error when try to attach a file to mongoid paperclip field of a rails model

I have spent a lot of time trying to attach a file into a mongoid paperclip field. The examples that I have found, always do the same: my_model_instance = MyModel.new file = File.open(file_path) ...
1
vote
0answers
14 views

Paperclip styles not created on upload, but are created on refresh

I am using paperclip to manage my image uploads in a rails project I am working on. It works perfectly for all of the models I am using it with, except one. Styles defined in the model are not ...
0
votes
1answer
25 views

issue setting up a download link

Very new to rails, so hopefully this is a simple fix. I am trying to set up a link to download a file I store in my website. Here is my download function: controller def download send_file ...
0
votes
1answer
20 views

Getting S3 Credentials from the database at startup in rails

Using a combination of the rails-settings gem and paperclip, I've got my application set up such that one can specify S3 credentials in the database (through an interface in the front end) and can ...
0
votes
1answer
11 views

Paperclip - updating attachment that exists in DB but does not exist on S3

Here we have simple rails model: class Attachment < ActiveRecord::Base has_attached_file :attachment, styles: lambda { |attachment| store_sizes?(attachment) ? { :large => ...
1
vote
1answer
26 views

Elasticsearch + Tire + PaperClip : Nested objects

I start implementing ElasticSearch in place of a old home-made search engine. I migrate the major part of the code, but I have to render a url provided by paperclip, and I cannot have the right object ...
0
votes
2answers
22 views

Passenger missing gem

I'm a newbie to Rails development and trying to run my new application on Hostmonster. I managed to make it work at the beginning. But now I tried to add more features and it's broken with the ...
0
votes
0answers
28 views

paperclip: generate office document thumbnails

I want to be able to create thumbnails of user uploaded MS Office documents in my rails app. Default paperclip installation leads to: [paperclip] An error was received while processing: ...
0
votes
1answer
49 views

Syntax error, unexpected tASSOC, expecting keyword_end

Added the convert_options code to existing Paperclip code in my user method. Now getting: /Users/-----/----/-------/app/models/user.rb:148: syntax error, unexpected tASSOC, expecting keyword_end ...
0
votes
1answer
30 views

Image seems to be added to bucket, can't view it on my app

I just implemented paperclip in to my rails app that's hosted on heroku. The app seemingly connects and uploads the image to s3. Here are some examples of the logs when I submit the form on the app: ...
0
votes
1answer
23 views

Paperclip/heroku/S3 Configuration is setup as best as I can tell but getting error on upload

Here's the error I get when I try to upload an image through the live site: ArgumentError (missing required :bucket option): app/controllers/editions_controller.rb:53:in `block in create' ...
0
votes
1answer
17 views

Use paperclip to define thumb version of image keeping aspect ratio

I'm implementing paperclip and the images I'll be uploading have different sizes. I want each image's thumbnail to be 100 pixels tall and to keep the aspect ratio of the uploaded image. Is there a ...
1
vote
1answer
39 views

Attempting to install Paperclip gem - Could not find paperclip-3.4.2 in any of the sources (sudo vs. no sudo issue)

I am running Ruby on Rails on a production server. Some how, I believe the version of Ruby on the server is completely messed up. Although it is not generally a problem, it becomes a large problem ...
1
vote
3answers
71 views

Rails - paperclip - multiple image creation no-method error

I'm new to Ruby on Rails and I have been trying to create a sample apple but I've been stuck on this one part for WEEKS ! I have been spamming stackoverflow but I've had no luck :(. I'm trying to ...
0
votes
3answers
29 views

Ruby validation - multiple permutations for a single hash

Say there is a hash field that can have two possible value permutations, "foo" and "bar". How can I validate the hash value is one of the two? class ValidateMe validates :type => { :type => ...
0
votes
1answer
30 views

Using a non - US s3 server with rails, heroku and paperclip

I'm trying to set this up using the article on herokus developer site. https://devcenter.heroku.com/articles/paperclip-s3 # config/environments/production.rb config.paperclip_defaults = { ...
0
votes
1answer
31 views

Model has_many PaperclipModel. I have error “undefined method `img'”

I installed gem Paperclip, created two models class Image < ActiveRecord::Base belongs_to :pizzerium attr_accessible :img, :pizzerium_id, :alt has_attached_file :img, :styles => { ...
3
votes
1answer
46 views

Paperclip image name changed after updating any attribute

This is my model class Technology < ActiveRecord::Base attr_accessible :name #etc .... has_attached_file :logo, :path => ...
0
votes
0answers
26 views

Why image upload could be failing just in production?

I saw Why is Paperclip failing silently in production + development? and Paperclip images failing to save in production rails. In development my form uploads images correctly. In console I see log ...
0
votes
2answers
255 views

Red lights about Jquery Ajax image uploading to Rails paperclip

let me tell you what is going on. I have a web client which is fully html/css/JavaScript (no server side language), and a Ruby on Rails server that consumes and receives json data. Early everything ...
0
votes
1answer
22 views

Must specify CLASS - Paperclip Watermark

I am using watermark with paperclip as a guide to add a watermark to my images. In other post, I read I could use rake paperclip:refresh Model RAILS_ENV=production I am trying in development ...
0
votes
1answer
18 views

Where do you store uploaded user images

I am not yet using a service such as Amazon S3, so where in the file structure should I store uploaded user images? I want to avoid the public directory as the images are private.
0
votes
1answer
37 views

paperclip image path not working

I am still very new to ruby (finishing a class on it now) so please be very specific with me. For my class final, I am making a simple blog and trying to get an image uploader working using paperclip. ...
0
votes
0answers
86 views

Rails 4, paperclip, nested form, multiupload, upload only one file one update

I have two models, Country and Photo. Photo is nested in country. Everithing works fine, i have multiple upload with one field on creating new object. And I can see and destroy any added photos when ...
0
votes
1answer
25 views

image saved but missing using paperclip

I am using paperclip at attach images to offers in my rails application. The code works in development, but not in staging. In staging, the images are saving correctly to s3, but the image_file_name ...
0
votes
1answer
31 views

NoMethodError when using paperclip for nested resource

Hi I am pretty new to Rails, and I managed to get a few classes working together until I tried to use Paperclip. Everything works fine until I try to upload a picture. I get this error: undefined ...
6
votes
6answers
187 views

Ruby on rails - paperclip not saving to database

I'm trying to make a create product page in rails. This includes adding multiple images. I have one model for products one for photos and for users. I'm using the paperclip gem for photo upload. But I ...
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 ...
1
vote
1answer
40 views

Rails - paperclip - NoMethodError

I'm trying to make a create product page in rails. This includes adding multiple images and text fields. I have one model for products and one for photos. I'm using the paperclip gem for photo upload. ...
0
votes
0answers
30 views

paperclip with files uploaded directly to the server

I'm working on a really simple rails photo app. I'm uploading the photos to a subdirectory of /public (so I can directly link to them w/o going through the app if I want), and I'm uploading them ...
0
votes
0answers
30 views

Rails, Paperclip: How do I copy an attachment within a model and get it there with the scaled thumbnails?

I'm building an editor/viewer for a user's work samples. I have a work sample model called work_sample_item that contains a paperclip attachment "work" and another called "representation". The idea ...
0
votes
1answer
62 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
33 views

paperclip polymorphic nested multi file uploads

Not really any error messages, just no file uploaded! Please help!!!! everything get created and is fine apart from the file upload. Models: class Assets < ActiveRecord::Base belongs_to ...
0
votes
1answer
41 views

Rails, S3, Paperclip- Uploads are being logged by S3 but not in bucket

I am working on a Rails app where I want people to be able to upload their photos into a feed. I am trying to integrate this in with S3 and paperclip. Right now every time someone has uploaded a photo ...
1
vote
0answers
56 views

Paperclip gem is crashing the user's session in Rails

I have found similar questions to that, but mine is a little bit different. (Paperclip 3.4.1, Rails 3.2.12, Ruby 1.9.3p392, using Pow 0.40) Here is my model: class Smoke < ActiveRecord::Base ...
0
votes
0answers
25 views

Undefined method `validates_attachment_content_type' in Rails model class

Using Rails 2.3.* (legacy project, just adding some features) and I'm getting an error with the paperclip plugin. I'm not sure why it is telling me the method is undefined. Paperclip 2.4.5 is ...
0
votes
0answers
33 views

Having a customized Fancybox in Rails

I am using Rails 3.2. I need to implement a Fancybox like feature in my Rails applications, and I am aware of the fancy-box rails gems, and how to couple it with PaperClip (which I use to manage my ...
0
votes
1answer
19 views

Undefined paperclip method

I am getting a method is undefined error in my Rails project. This method is used by the plugin paperclip. Can anyone tell me what I'm doing wrong? Here is the beginning of my picture class: require ...
0
votes
1answer
55 views

406 when uploading image from RestKit to RoR backend

I'm having a serious problem and searched for many hours without finding a solution. I have a backend server using Ruby of Rails and paperclip for image saving. The image upload works fine from the ...

1 2 3 4 5 32