On 22 Sep 2010, at 12:00, Amit Tomar wrote:
> luis i change my code as you said
> 
> filename =  "#...@stream.location}"
> response.headers['Content-Type'] = "application/force-download"
> response.headers['Content-Disposition'] = "attachment; 
> filename=\"#{File.basename(filename)}\""

The problem is here ^^^^

> response.headers["X-Sendfile"] = filename
> response.headers['Content-length'] = File.size(filename)

File.size should fail, as rails will be in Dir.pwd == Rails.root, and as such, 
File.size(filename) for filename with no path should fail. This should be 
raising Errno::ENOENT.

_______________________________________________
Mongrel-users mailing list
Mongrel-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/mongrel-users

Reply via email to