1
vote
0answers
72 views

Download a file with HTTP “Authorization” header set

I am providing a file upload to a resource in my RESTful API (made with Rails). When you GET /resource/123/attachment the file with corresponding MIME type is sent to the browser. (can be anything .. ...
0
votes
1answer
67 views

rails controller download from aws s3

I am trying to build a really easy way for my users to download audio content from aws via my website. Here is the flow: I give the user a download link. Ex: www.mysite.com/foobar User clicks on the ...
1
vote
0answers
149 views

Rails: Storing .pdf files in dropbox

I am using the paperclip, dropbox, and paperclipdropbox gems in an effort to upload and download old exams (.pdfs) from a single dropbox account to avoid paying for Amazon S3 services. I am able to ...
0
votes
1answer
85 views

How to handle and generate big files in rails?

I am quite new in the rails world, and today I faced the following problem: I have to generate a really big json. At first I tried to do it in memory but there wasn't enough so I generated a file and ...
0
votes
2answers
277 views

Rails: How to download a previously uploaded document?

I need my user to upload documents such ad pdf and txt on their profile. And I did that using Carrierwave, so I have a list of documents with titles and urls. But how can I make other users download ...
1
vote
1answer
189 views

Rails 3.2 link_to a File in Safari

I have an area on my site where a user can upload files to the server. The files are not restricted to the type of file. Everything works in Firefox etc, but safari tries to open the file in a new ...
1
vote
4answers
1k views

Ruby on rails file download link

I created file upload using paperclip! File uploads as it is supposed to. Than I added file download method like this: def download sample = Sample.find(params[:id]) send_file ...
0
votes
1answer
152 views

Rails 3.1 : How to download a PDF housed on Linode to client computer?

I am trying to understand what needs to be done to initiate a download of files that are housed on a server different from the one on which the Rails app is? Specifically, my Rails app is on Heroku ...
2
votes
2answers
194 views

saving file to specific location

here is my method to saving file: def savefile @generator = Generator.new(params[:generator]) @bigtable = Rails.cache.read("pass") doc = "wyniki.csv" File.open(doc, "w"){ |f| f ...
1
vote
1answer
108 views

Rails: Send dynamically generated file already available to the view as a download

I have a controller in a Rails application that generates a set of CSV files and provides them to the view. I would like to add links allowing a user to download those files in the same view. I've ...
3
votes
1answer
624 views

Rails 3.0.x send_file sending 404 HTML instead of the real file

I have setup a route to handle a specific file download. match '/overview' => "pages#overview", :as => "da_overview" in Pages#overview, I'm sending the file with this line send_file ...
1
vote
1answer
160 views

File Downloads in Internet Explorer over SSL in Rails

After recently switching my Rails 3.0 application over to SSL, I've been having issues with file downloads in Internet Explorer. Everything works fine in Firefox and Chrome. After extensive searching, ...
7
votes
1answer
4k views

How to download a file from rails application

I can't seem to find a simple and clear answer to this problem anywhere! Everything seems either outdated or incomplete! I just want the user to be able to click on a link or button and download a ...
0
votes
2answers
100 views

download the file from outside of the ruby on rails project

I have a files in my server the following location. "/home/files/*.doc". My Project location is "/home/bld/.." Is there way to download the doc file from the folder "/home/files/x.doc" using the ruby ...
2
votes
1answer
172 views

Rails - Delivering downloadable files after payment

I am looking for a way to deliver purchased files to users of a web app. Basically a user will purchase a 'product' from my site, at which point they can download the files they purchased (will likely ...
3
votes
2answers
2k views

File download using Paperclip

I am using Rails to make a small file upload app. For file attachment I am using the wonderful Paperclip but I can't work out how to do downloads. How would I create a link in my show view, that is ...
0
votes
1answer
73 views

Advice on model and method design for creating downloadable products with unique URLs (in Ruby on Rails 3)

I'm about to embark on a new app that will offer downloads of digital files. To keep the files secure, I never want to give out the exact URL to the end user, but instead want to mask the URL. I also ...
1
vote
2answers
2k views

Rails: send_file not causing download, links to 'show' controller method instead

First time using rails, I'm trying to create a download link to get something off the file system. In my view, I've got <%= link_to 'Show', upload, :method => :download %> and my ...
0
votes
2answers
842 views

Mass downloading from Rails (maybe with Paperclip)

I need to allow multiple downloading of small documents in Rails, preferably using Paperclip (I've already used it to enable uploading). Specific needs: Zip the files for download. Download ...
0
votes
1answer
331 views

Resuming File Downloads in Ruby on Rails

Finally found out how to achieve this! Turned out it is as simple as enabling xsendfile and setting header parameter Accept-Range Read my answer below (by the way, in the block quote below I wrote ...
2
votes
4answers
2k views

Fast ruby http library for large XML downloads

I am consuming various XML-over-HTTP web services returning large XML files (> 2MB). What would be the fastest ruby http library to reduce the 'downloading' time? Required features: both GET and ...
2
votes
1answer
510 views

Ruby on rails: Image downloads with Authentication/Authorization/Time outs

I'm having few doubts on implementing file downloads. I'm creating an app where I use attachment_fu with Amazon s3 to upload files. Things are working pretty well so far on uploading side. Now its the ...
1
vote
1answer
201 views

mod_xsendfile alternatives for a shared hosting service without it

I'm trying to log download statistics for .pdfs and .zips (5-25MB) in a rails app that I'm currently developing and I just hit a brick wall; I found out our shared hosting provider doesn't support ...
4
votes
1answer
853 views

Resuming file downloads in Ruby on Rails (Range: header support)

I am trying to make my Rails app support resuming of downloads, since we serve quite large files from there. I found a piece of middleware to do this long ago, but I cant find it again. Any ...
1
vote
1answer
157 views

can Amazon be used to offload server of static files for a Ruby on Rails app, but still support the app's authentication & authorization?

Can one of the Amazon services (their S3 data service, or otherwise) be used to offload server of static files for a Ruby on Rails app, but still support the app's authentication & authorization? ...
3
votes
1answer
2k views

How do you invoke a file download with link_to_remote in rails?

I'd like to be able to invoke a file download from rails using link to remote. I have the link working okay,it looks like this : link_to_remote image_tag("icons/ppt_48.png"), :url => ...
1
vote
3answers
2k views

setting the filename for a downloaded file in a rails application

I have a controller action that allows a user to download a file with an extension of .ppt . It's not really a powerpoint binary, just an xml-ish format that powerpoint can read. the file is ...