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:

  1. use redirect() which will open the file not download it.
  2. 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.

link|improve this question

use file_get_contents or a cURL to retrive the S3 file then do a passthrough with the headers – Lawrence Cherone May 14 '11 at 17:26
That's what he'd doing with readfile. – Lasar May 14 '11 at 17:33
correct, but even though I don't want the client to download the file through my website. there must be a better solution to download from another domain. – Khaled May 14 '11 at 20:37
Pulling the file through your site is a terrible idea if you're trying to take advantage of cloudfront, which potentially distributes your content to up to 19 edge nodes. – MikeNereson Jul 21 '11 at 20:04
feedback

2 Answers

up vote 3 down vote accepted

You just need to set the correct headers on your files in S3 in order to force the browser to download rather than opening the file. Set these:

Content-Disposition: attachment; filename=FILENAME.EXT
Content-Type: application/octet-stream

You will need to set them when uploading the files to S3. With the php SDK you'd use create_object.

Or you can set these after uploading using 'change_content_type' or by copying the file to itself in S3 and setting the correct headers.

link|improve this answer
yes this is it, that's worked great for me, thanks so much – Khaled May 15 '11 at 12:44
it's been solved by changing the file meta as this code says: $opt['meta']['Content-Type'] = 'binary/octet-stream'; – Khaled May 15 '11 at 14:46
@Khaled - Great. Glad to help:) – Geoff Appleford May 15 '11 at 15:50
feedback

You can't tell the browser how to handle a remote file. By redirecting to amazon you're telling the browser to start a new request over there. You don't have any control over that request.

The only solution I can think of is to package the image into a zip file or similar. Of course that adds another (probably annoying) form of complexity.

link|improve this answer
the image is just an example, maybe I forget to mention that several files type is allowed specially pdf, and docx. Anyway, thanks for the responce, but I think there is a way to figure this out. Actually many big websites uses external storage system. – Khaled May 14 '11 at 20:26
I was not aware of the possibility of setting headers when uploading a file to S3. That is nice to know. – Lasar May 15 '11 at 18:43
it is possible, I think amazon has yet has better solutions to provide, the reason why we chosen amazon s3 because it has direct upload using POST directly from browser. thanks for the help anyway – Khaled May 16 '11 at 17:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.