Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
3k 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
1answer
1k 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 ...
4
votes
3answers
1k 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 ...
3
votes
2answers
518 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 ...
3
votes
2answers
784 views

What is the best file upload/attachment plugin rails?

What are the pros and cons between PaperClip and Attachment_fu ? Are there any other plugins that would you recommend ? Is possible to support multiple file uploads and progress feedback on upload ...
3
votes
2answers
525 views

attachment_fu: Don't reload thumbnails

I've got a nice little "photos" class that has attached images. When I go to the page to sort the photos' order, it iterates though each photo, sets the new "sort" value, and saves it. All good so ...
2
votes
2answers
420 views

Ruby on Rails: Server error with while trying to upload a file using attachment_fu: (can't convert nil into Integer)

I followed a simple example to upload a file (see link to code below). When i add to the upload form the field <%= f.file_field :uploaded_data %>, and click submit button on the form (with or ...
2
votes
3answers
721 views

attachment_fu and RMagick

After finally getting RMagick installed on my Mac I have set up attachment_fu according to the tutorial here: http://clarkware.com/cgi/blosxom/2007/02/24#FileUploadFu&gt when I try and upload a ...
2
votes
2answers
496 views

Rails, Attachment_fu - deep copy of database storage attachments

I have a model, let's say Attachments, that uses attachment_fu to accept file uploads from the user. I want to "deep copy" (or in Ruby-ese, deep clone) an Attachment, thus creating a completely new ...
2
votes
2answers
120 views

Attachment_fu: how can I selectively prevent thumbnail creation?

I'm happily using attachment_fu to handle file uploads and thumbnail creation. However, for some (but not all!) cases I would like to suppress the creation of thumbnails. How would I hack ...
2
votes
4answers
4k views

TypeError (Can't convert nil into String) With Attachment_Fu

I'm handling file attachments in my Rails app with Attachment_fu, which provides a public_filename method to retrieve a file's URL. I'm using it on a model called Cover, so if I want to call the URL ...
1
vote
0answers
39 views

Rails : Replace Attachment_fu DB with Paperclip S3

I replaced my attachment_fu with paperclip S3. I am facing problem of transferring my old data which was in database tables to S3 buckets. What would the best solution of doing these. Provide some ...
1
vote
2answers
89 views

How do I disable Attachment Fu Plugin in Community Engine without removing it?

So here is the situation: The Photo model in Community Engine is using attachment Fu. I, wish to use paperclip instead. Now this works fine until I have to delete an attachment. That's when the ...
1
vote
1answer
556 views

Upload Photo from iPhone to Rails server with attachment_fu

I think I've been able to send a photo from the iPhone to Rails using the Multipart format, but once the photo gets to the Rails server, I can't figure out how to save it correctly. I think the file ...
1
vote
1answer
913 views

How to upload images on heroku server using attachment_fu plugin

I have an app in Heroku, I need simple file storage for uploaded images for this I used send_data using attachment_fu plugin. After that I have used the tmp/ directory to write this file and want to ...
1
vote
1answer
454 views

Setting Content-Disposition for AWS S3 with Rails?

I am using Amazon S3 to store and serve user content for user accounts. I need the ability to serve the files either inline (sometimes urls for images will be in blog posts, etc) or as a download. By ...
1
vote
1answer
66 views

How can I migrate attachment_fu out of the database?

I'm working on a Rails project that currently receives uploaded files using attachment_fu and stores files in the database. I'd like to move them to use the filesystem. The problem is that there are ...
1
vote
2answers
112 views

Validating image dimensions in attachment fu

When the image gets saved, the height and width of the image get saved in the model correctly. I have a requirement where I need to validate the dimensions of the image before save. It has to be of ...
1
vote
1answer
189 views

Rails : Trouble installing attachement_fu on Heroku

I'm trying to deploy an app on heroku. My trouble is to install hattachement_fu plugin. I ran the following command to install it directly on the server. heroku plugins:install ...
1
vote
0answers
171 views

attachment_fu rmagick on phusion passenger

I am getting so much pain with setting up rmagick on Passenger . I’m developing a rails web application that has image processing feature using imagemagick. the image processing feature is working ...
1
vote
0answers
90 views

Customizing attachment_fu?

I am working with the attachment_fu plugin for my file uploads, while it does some things very well I am finding it very difficult to customize. One of the problems I am having is that the errors ...
1
vote
1answer
125 views

ImageMagick, passenger, rails, attachement_fu doesn't resize

So after a couple of months of development today I am finaly deploying! (WOOHOO great day). But i am stuck with a problem I can't seem to fix: First of all in development all is working perfectly. In ...
1
vote
0answers
163 views

MIME type handling in uploading a serving files through attachment_fu

I'm currently using attachment_fu to handle file uploads, and while the plugin provides a nice catchall for images in :content_type => [:image], nothing similar seems to exist for broader buckets. ...
1
vote
0answers
93 views

With the attachment_fu rails plugin, is there any way to delete files uploaded to Amazon S3?

Let's say I'm using attachment_fu to attach profile pics to user profiles in a system, with Amazon S3 used as the actual file storage. When users upload new profile pics, I'd like to replace the ...
1
vote
1answer
292 views

Attachment_fu error

I am getting an error while trying to upload images on an Ubuntu machine that's running Rails 2.3.4, Ruby 1.8.6 using attachment_fu with image science. FreeImage exception for type ???: IPTC: Invalid ...
1
vote
3answers
200 views

Need ideas for reprocessing images using attachment_fu

I discovered a bug in my Rails app due to Rails app and gems upgrades and undocumented code from the previous developers. I have a lot of images that have been processed, but not sized correctly ...
1
vote
3answers
473 views

Attach 1 or more (non image) files to rails application, with having to install an image-processing library

I'm currently learning rails by creating a simple project management app. I've gotten to the point where I would like to be allow a user upload multiple files - pdfs, docs, xls etc. The user only ...
1
vote
1answer
103 views

Attachment_fu: can't disable :partition option

I'm trying to use the Attachment_Fu plugin in a Rails project, and want to customize the paths where uploaded files are saved. The documentation shows this option: :partition # Whether to ...
1
vote
4answers
570 views

Flickr style resizing with attachment_fu

I want attachment_fu to resize my thumbnails in a similar way to how flickr, facebook and twitter handle this: If I want a 100x100 thumbnail I want the thumbnail to be exactly 100x100 with any excess ...
1
vote
1answer
304 views

MMS2R and Multiple Images Rails

Here's my code: require 'mms2r' class IncomingMailHandler < ActionMailer::Base ## # Receives email(s) from MMS-Email or regular email and # uploads that content the user's photos. # TODO: ...
1
vote
2answers
305 views

How to improve performance with our Rails image model and attachment_fu?

I've been trying to improve performance our app. The worst performing area seems to be the creation of our Image model, which uses attachment_fu: class Image < Attachment ... has_attachment ...
1
vote
3answers
261 views

Is it an issue to create a directory for each file upload, in a web application on linux/unix?

I am doing file-upload for a web-application (running on unix/linux). I'm wondering if there would be a concern if I planned to create a new directory for each file upload? This is the ...
1
vote
2answers
286 views

Serving files over HTTPS dynamically based on request.ssl? with Attachment_fu

I see there is a :user_ssl option in attachment_fu which checks the amazon_s3.yml file in order to serve files via https:// In the s3_backend.rb you have this method: def self.protocol ...
1
vote
1answer
405 views

Using attachment_fu, how do you edit an existing photo, update only thumbnails, and leave original unedited?

After a photo is uploaded and created using attachment_fu, is there a way to edit just the thumbnails and leave the original as it is? I understand how to do the resizing or cropping, but it's ...
1
vote
2answers
515 views

Attachment_fu failing to validate on update

I have been using attachment_fu on a project for a long time and all was fine but now as I am trying to bring the project up to rails 2.3.3 I am running into a strange bug that is driving me nuts. The ...
1
vote
2answers
725 views

What is the best way to upload a file to another Rails application?

I 've researched and noticed that ActiveResource lack this functionality. So, what is the current state of the art when doing a file upload? One problem with Guillermo's approach is that the request ...
1
vote
1answer
645 views

saving files outside the public folder with attachment_fu in ruby on rails

I'm using attachment_fu in a rails application to handle file uploads, and i want to save them in a directory in the root of the application called attachments. however, I cannot seem to make this ...
1
vote
1answer
719 views

Why doesn't my upload from Flash to Rails & attachment_fu work (it has something to do with the content type)?

I am trying to upload a file from a flash widget to my rails application, which uses attachment_fu to handle uplaoded images. I am using flash to upload since it makes it easy to select and upload ...
1
vote
4answers
857 views

How do you validate attachment_fu's image width and height?

I want to be able to validate the image is exactly a certain with or a certain height, or if it's square. In the validation block of the model that has_attachment, when I try to access image_size, ...
0
votes
1answer
21 views

Equivalent of attachment_fu's “after_attachment_saved” in Paperclip

Migrating from Rails 2 to 3 and I had to ditch attachment_fu. Other people will probably have the same problem. One of my models using attachment_fu has an after_attachment_saved method defined, ...
0
votes
1answer
134 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? ...
0
votes
1answer
77 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 : ...
0
votes
0answers
126 views

Migrating rails 3.0 application from attachment_fu to paper_clip

In my current project I am going to migrate application from attachment_fu to paper_clip . I have read the documentation of both attachment_fu and paper_clip I am totally new for both this . Can ...
0
votes
0answers
120 views

Issues with attachment_fu plugin in Rails 2

I am trying to use attachment_fu plugin in my Rails app to implement a feature wherein I can post a message along with an appropriate image it. I am using Rails 2.0.2 and Ruby 1.8.7 for project ...
0
votes
1answer
403 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 ...
0
votes
0answers
35 views

Attachment_fu generates thumbs outside project folder

I have three projects where I create images thumbnails with attachment_fu, but I want to use this images at all projects. How can I do that. I saw in many places a subdomain like assets.site.com, ...
0
votes
2answers
281 views

How to display image which is stored on s3 without storing on harddisk?

In my rails app I have used attachment_fu to upload images and stored it on s3. I want to display these images on browser without retrieving it. How can I display images by giving s3 path? Thanks, ...
0
votes
1answer
313 views

Rails: Uploading multiple files as a nested model

I am working on a project where it is needed to upload multiple files of different type. I want to store the files in the database (I am not sure if this is the best idea also) as a nested model. May ...
0
votes
1answer
125 views

How to store images in db_files in attachment_fu plugin?

In my rails application I have used attachment_fu plugin for image upload. I am new on rails, I want to store file in attachment_fu db_files table. How to store images in db_files and which path i ...
0
votes
1answer
380 views

Attachment_fu issue

I am trying to use attachment_fu + image science on jRuby-1.5.2 and Rails 3. I have followed the attachment_fu docs. However, when I upload the form form the browser, i get an error on ...

1 2