0
votes
2answers
92 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 …
0
votes
2answers
35 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
.. …
0
votes
3answers
80 views
Uploading a file to a directory outside of RAILS ROOT with attachment_fu
Hi all,
I'm trying to use attachment_fu to upload files to a directory outside of the RAILS_ROOT. I want the files to be saved to ~/APP_NAME/uploads/ so that they can be approved/ …
1
vote
3answers
77 views
Is it an issue to create a directory for each file upload, in a web application on linux/unix?
Hi,
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? …
0
votes
1answer
41 views
rails attachment_fu public_filename problem
Hi,
attachment_fu generates wrong public_filename.
>> pic.thumbnails
=> ProductPicture id: 12331, product_id: nil, parent_id: 12330, content_type: "image/png", filename: "b_9788 …
0
votes
1answer
72 views
What is involved with changing attachment_fu’s storage scheme?
I have a rails application that is using attachment_fu. Currently, it is using :file_system for storage, but I want to change it to :s3, to allow for better scaling as more files …
0
votes
1answer
69 views
Rails plugin Attachment_fu on Windows
I'm having problem with Rails plugin attachment_fu. On every upload, I get validation error
Size is not included in the list
I'm currently using
Rails 2.3.3
Ruby 1.8.6
The …
0
votes
2answers
70 views
Why is attachment_fu updating every attachment instead of just the changed ones ?
I have a Property model with a has_many and accepts_nested_attributes_for on a Image model which uses attachment_fu. Updating a Property using the following code results in a datab …
1
vote
2answers
122 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 …
0
votes
1answer
63 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 sel …
1
vote
1answer
94 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 cropp …
0
votes
2answers
282 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 …
1
vote
4answers
491 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 wa …
0
votes
2answers
128 views
Attachment_Fu thumbnail width
Any ideas on how to get the width and height of the thumbnail image? photo.width returns the original photos width. I am storing the width of the thumbnail in the database, I'm jus …
3
votes
2answers
170 views
attachment_fu: Don’t reload thumbnails
Hi,
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 …
