Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to make it so when you click "download here" a pdf file will download to the user's desktop. How should I go about doing this?

share|improve this question
1  
whats your setup? PHP? Apache? There's a number of options depending on this – seengee Jul 13 '10 at 15:26

4 Answers

This is a common issue and only few people know there's a simple HTML 5 solution:

<a href="./directory/yourfile.pdf" download="newfilename">Download the pdf</a>

Where newfilename is the suggested filename for the user to save the file. Or it will default to the filename on the serverside if you leave it empty, like this:

<a href="./directory/yourfile.pdf" download>Download the pdf</a>

Compatibility: I tested this on Firefox 21 and Iron, both worked fine. It might not work on HTML5-incompatible or outdated browsers. The only browser I tested that didn't force download is IE...

share|improve this answer

code for a.php:

<?php
header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename=file.pdf')
echo file_get_contents("file.pdf");
?>

link it in web:

 <a href="a.php">Download</a>
share|improve this answer

Use the Content-Disposition header.

But, please: Only do this if it is really necessary for the user to download the PDF and not open it (so that it's just an aid for the user that he does not have to explicitly select "save file"). Don't use it to force the user to download it although he just wants to view it.

share|improve this answer
Nice. Never used that header. – Yuval Adam Jul 13 '10 at 15:30
+1 for considering the user. – Tim Rourke Jan 4 '11 at 16:39

What you are asking is to control browser behavior - this is not simple.

The best bet you have it to point the link to what seems like a web page (i.e. download.php?file=1) and once the browser notices it's binary data, it will ask the user what it wants to do with it. This method will most likely get the job done.

But note that this behavior cannot be guaranteed, and is highly-dependent on browser configuration.

share|improve this answer
Since this method is not recommended how should I present the pdf? Should I copy and paste it onto the page? I've seen pdfs in web browsers, but I don't know how they do it. Also I'm just a beginner in web design. I have no clue what binary data is, sorry. Sincerely, Caleb – Nelsencaleb Jul 15 '10 at 15:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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