Im looking for a way to download a xml file. I use:
file_path = 'folder/' + xml_name + '.xml'
send_file file_path, :type => "text/xml"
but this always downloads me an empty file. The file itself has 16 KB of data in it...
why is that?
Maechi
|
Im looking for a way to download a xml file. I use:
but this always downloads me an empty file. The file itself has 16 KB of data in it... why is that? Maechi
| ||||
|
feedback
|
|
probably you have to comment out
in production.rb see http://vijaydev.wordpress.com/2010/12/15/rails-3-and-apache-x-sendfile/ for explanations | |||
|
feedback
|
|
Problem saved, but I don't know why
send_data is working... but send_file not! | |||
|
feedback
|
|
As Eugene says in his answer, in a production enviroment Rails will let Apache or nginx send the actual file for you with x-sendfile, if you don't use either of these as the infrastructure for rails you have to comment out the line suggested in the
| |||
|
feedback
|
|
You must enable sendfile usage in
If this line is not present (or commented out), then Rails will correctly send the file, but not through Apache. If you are getting 0-byte files, then make sure that you have installed Download the single source file ( Then you're going to want to set the | |||
|
feedback
|
file_pathcorrect? – jigfox Aug 11 '10 at 7:23