The attachment-fu tag has no wiki summary.
0
votes
1answer
29 views
Extract text from document in memory using docsplit
With the docsplit gem I can extract the text from a PDF or any other file type. For example, with the line:
Docsplit.extract_pages('doc.pdf')
I can have the text content of a PDF file.
I'm ...
0
votes
0answers
24 views
Set content-disposition during upload on s3 using attachment_fu
I have a model that has files attached to it using attachment_fu. The files are Amazon s3. Im using rails 2.3.17.
On the view, I want to force the file to be downloaded when users click the links to ...
31
votes
3answers
10k 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
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 ...
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 ...
2
votes
4answers
475 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 get uploaded.
What ...
0
votes
1answer
70 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
...
1
vote
1answer
879 views
Rails: attachment_fu plugin, convert PDF uploads to image
Yo,
I've got attachment_fu set up on my server, and it works just fine. My goal, however, is to be able to upload PDFs and have them convert to image (then use all the pre-built attachment_fu options ...
0
votes
1answer
106 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 => ...
0
votes
0answers
56 views
Encrypting data - rails + attachment_fu
We've been using attachment_fu to upload files into our application. We now have to be able to encrypt uploaded data using AES. We use Rails 2.3.8 and Ruby 1.8.7. Attachment_fu is being used to check ...
0
votes
0answers
52 views
attachment_fu is not displaying the files/images from aws s3
This is another question from the thread What is involved with changing attachment_fu's storage scheme?. Wasn't sure whether I could ask another question on the same thread.
My application files ...
1
vote
2answers
1k 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 ...
0
votes
2answers
114 views
Is rails reporting its own action as deprecated?
Sorry if it is a dumb question, but the issue is quite straight forward. If I do,
$ rails new testproj
$ cd testporj
$ rails plugin install git://github.com/technoweenie/attachment_fu.git
Which ...
2
votes
1answer
319 views
Cannot send xlsx as attachment in Rails mailer
I am trying to send an email containing a file attachment created by the user.
attachments[document.display_name] = File.read(document.public_filename)
This works in most conditions (including ...
0
votes
1answer
1k views
Multiple Image Uploads with rails_admin (Attachment_fu, Carrierwave, etc.)? Any solutions?
I'm looking for a easy way to have multiple attachments on one model using Rails Admin. I've already Paperclip working, but I need multiple images and not just one.
Any hints / ideas / links?
Thank ...
2
votes
1answer
1k 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 ...
2
votes
0answers
142 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 ...
6
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 ...
1
vote
2answers
152 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 ...
2
votes
1answer
480 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
57 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
6answers
612 views
Being as DRY as possible in a Ruby on Rails App
I'm currently using the awesome attachment-fu plugin for a Rails app, but as a novice developer, I've never encountered a scenario like the one I've found myself in.
Essentially, I'm using the ...
1
vote
3answers
286 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 ...
0
votes
1answer
176 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
1answer
817 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 ...
2
votes
2answers
550 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
1k 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> when I try and upload a ...
0
votes
1answer
473 views
rails attachment_fu public_filename problem
attachment_fu generates wrong public_filename.
>> pic.thumbnails
=> ProductPicture id: 12331, product_id: nil, parent_id: 12330, content_type: "image/png", filename: "b_9788994035109_mid.png", ...
1
vote
2answers
840 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
193 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
603 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 ...
5
votes
1answer
3k 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
95 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
1answer
478 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
vote
2answers
173 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 ...
0
votes
1answer
338 views
How to post images to REST Service from a ruby rest client
The RoR Rest Service using attachment_fu on the server side. I am trying to post an image from a ruby rest client using JSON data. I am not even sure if attachment_fu supports this option or not.
My ...
0
votes
1answer
234 views
Rails user-conditional statement in model
I'm working on a Rails app using attachment_ fu and Amazon S3 storage. Is it possible to make the :s3_ access (a part of the has_attachment options) conditional based on a user input when creating the ...
0
votes
0answers
91 views
ImageScience and Attachment_fu script not sizing properly
I've got a script that I'm running that reprocesses images in a directory and I'm using ImageScience and attachment_fu. This is a 4+ year old Ruby on Rails project and I'm trying to avoid switching ...
0
votes
1answer
96 views
file upload with attachment_fu
Right now i am storing files inside public directory in my application.
I want to upload file to specific path like http://uploadfacility.com.
I have a login and password for that specific path.
...
0
votes
1answer
74 views
File upload using attachement_fu in rails
I want to know how to upload files(other than images) using attachement_fu plugin in rails. I successfully uploaded images using attachement_fu, but wasn't able to upload other kinds of files.
1
vote
1answer
279 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 ...
0
votes
1answer
78 views
can rename column size to filesize cause problem in attachment_fu?
can I rename the columns with attachment_fu ?
I am using oracle as my database and size is keyword in oracle. so i don't want to create a column with size name. So is it ok to create a column with ...
0
votes
1answer
232 views
attachment_fu image resizing with s3 storage
I'm facing a problem right now, where in my company, we want to resize the thumbnail images we have on amazon s3 storage using attachment_fu, I've been investigating how to regenerate this thumbnails ...
0
votes
1answer
115 views
file upload with attachment_fu in rails
My file upload is working fine on IE.
But it's returning "406 not acceptable" error on firefox.
Any solution?
1
vote
0answers
224 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 ...
0
votes
1answer
712 views
Heroku and Refinerycms: Application failed to start ~ attachment_fu problem
Ok so I'm trying to get Refinerycms working with Heroku, and I'm new at all of this. I've set up an amazon s3 account and added keys and ids to the amazon_s3.yml files.
When launched on Heroku at ...
1
vote
0answers
133 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
172 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 ...
2
votes
0answers
214 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
1answer
405 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 ...
