I've been in a development of new web application where it relay on S3 amazon servers as storage system, and Codeiginter as PHP framework. What I need is to force download of the file when download link is click. The orignal link looks like this http://www.our-web.com/download/do/1.jpg where it generate temporary signed URL to the actual file in amazon servers, looks like this http://main_bucket.s3.amazonaws.com/post/1/1.jpg?AWSAccessKeyId=AKIAJEOQKYPKC3CCU5RA&Expires=1305395426&Signature=iuzCdA22gImLK192%2BMAhk8OkAY8%3D.
I needs to make the file start downloading the real URL " Amazon " it soon it hit download
I have two ways now to do so:
- use
redirect()which will open the file not download it. - alter headers as this code:
header('Content-type: application/force-download'); header('Content-Disposition: attachment; filename=' . $file_name); header('Content-Transfer-Encoding: binary'); header('Expires: 4000'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Pragma: public'); header('Content-Length: ' . filesize($generated_file));
readfile($generated_file);
Unfortunately, both ways don't help me, the second makes the download comes from my website not from amazon directly.
how can I force downloading the file without downloading it from my website, I need a direct download.
readfile. – Lasar May 14 '11 at 17:33