ファイル ストレージを Rackspace Cloudfiles に移動したところ、send_file アクションが壊れました。
年
def full_res_download
@asset = Asset.find(params[:id])
@file = "#{Rails.root}/public#{@asset.full_res}"
send_file @file
end
新着
def full_res_download
@asset = Asset.find(params[:id])
@file = "http://86e.r54.cf1.rackcdn.com/uploads/fake/filepath.mov"
send_file @file
end
ファイルが公開ファイルにあったとき。コードはうまくいきました。リンクをクリックすると、ファイルがダウンロードされ、Web ページは変更されません。今、このエラーが発生します。
Cannot read file http://86e.r54.cf1.rackcdn.com/uploads/fake/filepath.mov
私は何が欠けていますか?
お時間をいただきありがとうございました。