Tagged Questions
0
votes
1answer
37 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
28 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 ...
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
53 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 ...
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
322 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
0answers
143 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
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 ...
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, ...
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 ...
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
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 ...
1
vote
2answers
863 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
607 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 ...
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 ...
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 ...
0
votes
1answer
194 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 ...
1
vote
1answer
479 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 ...
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
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 ...
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
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.
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 ...
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
97 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
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
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
215 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. ...
0
votes
1answer
337 views
File upload to a specific folder
I am using attachment_fu for file uploading... it saves the files to asset/0000/0001... something like this... i want to upload a file to a specific folder defined by a user... for example images to ...
1
vote
0answers
136 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 ...
0
votes
1answer
157 views
Attachment_fu file saving problem
Attachment_fu plugin is kind of old, but I have to modify an old app and I can't use another plugin like paperclip etc. So here's the code without further ado
Submissions table structure
...
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 ...
1
vote
1answer
406 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
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
139 views
Attachment Fu error on MAC OS X and Ubuntu 9.10
Greetings.
I am encountering an issue with attachment fu and s3.
Details:
Production server - Ubuntu - imagemagick, rmagick aws-s3 gems are installed .
Error starting app:
...
1
vote
2answers
690 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 ...
0
votes
1answer
714 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
1answer
120 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
1answer
3k views
WYSIWYG editor for Rails with Paperclip Integration
I'm looking for a way of integrating a WYSIWYG editor into my rails app so it will use Paperclip for Image / File uploads.
What I want is this: User can use a WYSIWYG field to create some rich text. ...
0
votes
1answer
415 views
attachment_fu and multipart form_for
Woo. My first question.
I have a feeling I'm overlooking something pretty basic in the construction of my form. I'm using attachment_fu and can't get this form to pass anything besides the file ...
1
vote
4answers
647 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 ...
2
votes
2answers
573 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
143 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 ...
1
vote
2answers
434 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 ...
3
votes
2answers
1k 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 ...
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", ...
2
votes
3answers
430 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 ...
