Tagged Questions
0
votes
0answers
237 views
Rails 3 & Paperclip - a problem with upload
I am trying to change a way of upload images on my page from my own upload to paperclip. I installed paperclip and tried to do following:
to table photos I added these columns:
| photo_file_name ...
1
vote
0answers
93 views
deleting old image record while updating paperclip polymorphic
I am using paperclip polymorphic plugins to manage attachments. I have a problem now that I cannot delete the old attachments while updating. Is there a way to achieve this or any way round to that I ...
0
votes
1answer
250 views
Problems updating Paperclip from plugin to gem
I am apparently having a huge problem switching from the plugin version of Paperclip to the gem version in my app. It's been my impression that there should be no difference whatsoever between a ...
1
vote
1answer
271 views
Polymorphic Paperclip Plugin with multiple picture uploads
I have used paperclip polymorphic plugin to track my attachments. The tutorialwhich I have been through has used single attachments(image) ...
1
vote
3answers
455 views
How to update avatar/photo of a model directly?
This is rails 3.0.x. I was just wondering how to update an attribute of a model's photo/avatar directly without prompting the user to upload from his/her system?
I am using Paperclip to attach a ...
0
votes
1answer
98 views
Unable to figure out why a photo attribute of the paperclip plugin is not being passed in as a params on submit
I am trying to implement a feature in my app where a user posts a message along with an image.
This is something similar to what is there in www.diasp.org .
I dealing with a pretty much outdated ...
1
vote
1answer
409 views
Unable to find the image path via file system using the paperclip plugin through the get method
with great difficulty , I guess I have finally been able to find the appropriate git commit of paperclip which would suit my project's config which is Ruby 1.8.7 and rails 2.0.2.
I am trying to ...
2
votes
2answers
3k views
Undefined method `has_attached_file' with paperclip 2.3.8 gem for Rails 2 using Ruby 1.8.7
I am trying to use the paperclip plugin in my rails app to upload images for posts. I am using Rails 2.0.2 and ruby 1.8.7 on Ubuntu 10.04 os for project specific purposes.
I am referring to the ...
2
votes
1answer
906 views
New to Rails/paperclip - Paperclip wont save
I'm very new to programming and I am trying to use paperclip to add a user photo to my user records. Records can be created from the add new record form without the <%= f.file_field :photo %> line ...
5
votes
3answers
908 views
With paperclip, how can I change the image location to a “:parent_model_id/:id” folder format?
Given that I have a Listing model that has many images and each image has one attachment, how can I have the listing_id be part of the folder structure?
Like so: system/photos/[listing_id]/:id
I ...
3
votes
1answer
3k views
Paperclip: “missing” image
I'm working on a website that allows people who run bed and breakfast businesses to post their accommodations.
I would like to require that they include a "profile image" of the accommodation when ...
0
votes
1answer
648 views
paperclip and rails 3 - NoMethodError
So I just installed paperclip and am trying to get it working in my brand new Rails app.
But this is the error I keep getting, when I go to localhost/upload/new:
NoMethodError in Upload#new
...
1
vote
1answer
2k views
Rails 3 -NoMethodError (undefined method `original_filename
I'm using Rails 3, Uploadify, to send images to S3.
Right now all the images being upload have the MIME: application/octet-stream
I'd like to fix that but I'm getting the following error:
...
3
votes
1answer
660 views
Rails, Uploading multiple Files to an Album
Alright this one's tricky - don't shy off!
I've setup a multi-file uploader with Rails 3 + paperclip + Ajax Upload (http://valums.com/ajax-upload/)
My controller is as follows (which works):
def ...
3
votes
1answer
1k views
Hiding amazon urls when using S3, Rails and Paperclip
I have just set up file uploads to Amazon S3 using Rails 3 and Paperclip. All this works amazingly well and is up and running. There is just one small detail that I would like to sort out. At the ...
0
votes
1answer
139 views
Problems using attribute_fu to update a record
I'm using attribute_fu and paperclip to add multiple images to a specific record.
This is working great when creating a new record but when I want to add new images to an existing record through a ...
17
votes
4answers
13k views
Paperclip image uploads in Rails - Paperclip::CommandNotFoundError
I'm using paperclip to handle image uploads to rails. it worked fine on my dev OSX machine, but now on my web server I get this error:
[paperclip] /Users/marky/bin/identify '-format' '%wx%h' ...
1
vote
1answer
508 views
Getting Paperclip to work in Rails
I have installed the Paperclip plugin to attempt to upload an avatar for my kase model. For some reason, the select the file button shows, and I can choose a file - but then when I click update the ...
1
vote
1answer
607 views
paperclip private files
Is there a way to make paperclip attachments private? As in only where I explicitly want a user to be able to access a file, can the user access the file.
Obviously the file can't be in a public ...
1
vote
2answers
751 views
Paperclip plugin : Change image folder permissions
By default when I upload new images, the folder created have 777
permissions
Is there a way to restrict permissions on the new folders?
Thanks
8
votes
7answers
7k views
Rails3 and Paperclip
I have migrated my application from rails 2.3 to rails3 and i have a problem with paperclip.
I saw there was a branch for rails3 on paperclip git.
So I added "gem 'paperclip', :git => ...
4
votes
3answers
5k views
Rails - Paperclip validating attachment size when it shouldn't be?
I've got a rails model using Paperclip that looks like this:
has_attached_file :image, :styles => { :normal => ['857x392#', :png] },
:url => ...
1
vote
2answers
1k views
RoR: not able to connect paperclip to Amazon S3
I have decided to deploy my app to Heroku and I was following their tutorials. However, Im trying to connect to my Amazon S3 bucket with a paperclip plugin right now and Im getting this error:
...
1
vote
4answers
1k views
Multiple Paperclip default_urls
I am using Paperclip to upload an image to my Project model and I want to have an array of default images (not depending on the style, but different images) is that posible? To pass an array instead ...
2
votes
2answers
2k views
can you pass self to lambda in rails?
I want to define a class method that has access to a local variable. So this would be different for each instance of the class. I know you can make a class method dynamic with lambda like when you ...
