Tagged Questions
0
votes
1answer
88 views
Issue updating file attachment(image) using Attachment_fu
I am able to upload image files as attachments using Attachment_fu but when I try to edit/ modify images which were already uploaded, it does not work.
In my Controller I have this:
def update
...
0
votes
1answer
123 views
How to convert .tiff images into .jpeg format
I am using Attachment_fu to upload images.
I need to convert .tiff images into .jpeg format after uploading image in application.
I used below code:
:styles => {
:thumb => ...
2
votes
1answer
490 views
Systematic way to upgrade from attachment_fu to carrierwave?
I'm working on upgrading an app to Rails 3, and attachment_fu is broken so I'm moving to carrierwave. Is there a systematic process that I can go through to upgrade from attachment_fu to carrierwave? ...
33
votes
3answers
11k views
Rails 3 paperclip vs carrierwave vs dragonfly vs attachment_fu
I'm working on upgrading a Rails 2.3.11, Ruby 1.9.2 app to Rails 3.0.10, and attachment_fu no longer works.
I'm looking at changing to paperclip, carrierwave, or dragonfly for file uploads, or maybe ...
0
votes
1answer
180 views
public_filename method is undefined for attachment_fu in ruby 1.9
I'm upgrading a RoR app that I inherited, from 1.8.7/2.3.? to 1.9/3.0.9
The app uses attachemnt_fu to allow users to upload photos, but when I try to display a photo on the home page, I get :
...
4
votes
3answers
2k views
Has anyone been able to get attachment_fu to work with rails 3?
I have a rails application that is being upgraded from Rails 2.3.5 to Rails 3. It uses attachment_fu for file uploads. We're trying to do this conversion without making DB changes, so I'd like to ...
0
votes
1answer
835 views
ruby on rails gallery ArgumentError Unknown key(s): attributes, discard_if attachment_fu and paperclip
Hi I'm trying to build a little gallery for myself and tried this link for multiple uploads for a album: http://www.mfischer.com/wordpress/2009/02/02/multiple-image-upload-and-crop-with-rails/
So far ...
12
votes
4answers
5k views
Attachment_fu or Paperclip for Rails3
I have just upgraded to rails3 and when I installed my usual attachment_fu plugin failed. So I started googling it and although I did manage to find a rails3 version there seemed to be a lot more ...
7
votes
3answers
2k views
attachment_fu testing in rails 3
I am trying to write specs for a working file upload functionality using attachment_fu. However, the sample code given by the author for testing requires me to require action_controller/test_process ...
