IE (HTTPS): generating pdf from php file doesn't work - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T22:20:11Zhttp://stackoverflow.com/feeds/question/773308http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/773308/ie-https-generating-pdf-from-php-file-doesnt-work2IE (HTTPS): generating pdf from php file doesn't workZack2009-04-21T15:49:58Z2009-05-06T18:48:43Z
<p>Here is my issue. I am trying to call a page: foo.php?docID=bar and return a PDF to the screen which is stored as a BLOB in the DB. </p>
<p>Here is the portion of my code which actually returns the PDF:</p>
<pre><code>$docID = isset($_REQUEST['docID']) ? $_REQUEST['docID'] : null;
if ($docID == null){
die("Document ID was not given.");
}
$results = getDocumentResults($docID);
if (verifyUser($user, $results['ProductId'])){
header('Content-type: application/pdf');
// this is the BLOB data from the results.
print $results[1];
}
else{
die('You are not allowed to view this document.');
}
</code></pre>
<p>This works perfectly fine in Firefox. </p>
<p>However, in IE, it doesn't show anything at all. If i'm on another page (i.e. google.com), and I type in the URL to go to this page, it will say it's done, but I will still have google.com on my screen.</p>
<p>I checked the headers for the responses from both firefox and IE. They are identical.</p>
<p>Does anyone have any suggestions? Need more information?</p>
<p><strong>EDIT</strong>: If it helps at all, here's the response header and the first line of the content:</p>
<pre><code>HTTP/1.1 200 OK
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 349930
Content-Type: application/pdf
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: PHP/5.1.2
Set-Cookie: PHPSESSID=cql3n3oc13crv3r46h2q04dvq4; path=/; domain=.example.com
Content-Disposition: inline; filename='downloadedFile.pdf'
X-Powered-By: ASP.NET
Date: Tue, 21 Apr 2009 16:35:59 GMT
%PDF-1.4
</code></pre>
<p><strong>EDIT</strong>: Also, the page which pulls out the pdf file actually uses the HTTPS protocol instead of HTTP.</p>
<p>Thanks in advance,</p>
<p>~Zack</p>
http://stackoverflow.com/questions/773308/ie-https-generating-pdf-from-php-file-doesnt-work/773324#773324-2Answer by Matt for IE (HTTPS): generating pdf from php file doesn't workMatt2009-04-21T15:52:22Z2009-04-21T15:52:22Z<p>I think you need to add more headers.</p>
<pre><code>header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Disposition: attachment; filename=THEFILENAME.pdf;");
header("Content-Transfer-Encoding: binary");
header("Content-Length: " . strlen($results[1]));
</code></pre>
http://stackoverflow.com/questions/773308/ie-https-generating-pdf-from-php-file-doesnt-work/773405#7734052Answer by Jeff Mc for IE (HTTPS): generating pdf from php file doesn't workJeff Mc2009-04-21T16:11:23Z2009-04-21T16:11:23Z<p>I had this issue too, i used the following which seems to work fine</p>
<pre><code>header("Content-type: application/pdf");
header("Content-Length: $length");
header("Content-Disposition: inline; filename='$filename'");
</code></pre>
http://stackoverflow.com/questions/773308/ie-https-generating-pdf-from-php-file-doesnt-work/773946#7739460Answer by fredrik for IE (HTTPS): generating pdf from php file doesn't workfredrik2009-04-21T18:27:49Z2009-04-21T18:27:49Z<p>Try this:</p>
<pre><code> header("Content-Type: application/pdf");
header("Content-Disposition: inline; filename=foo.pdf");
header("Accept-Ranges: bytes");
header("Content-Length: $len");
header("Expires: 0");
header("Cache-Control: private");
</code></pre>
<p>Also, if you are using sessions, you can try setting</p>
<pre><code>session_cache_limiter("none");
</code></pre>
<p>or</p>
<pre><code>session_cache_limiter("private");
</code></pre>
http://stackoverflow.com/questions/773308/ie-https-generating-pdf-from-php-file-doesnt-work/773976#7739761Answer by Zack for IE (HTTPS): generating pdf from php file doesn't workZack2009-04-21T18:35:17Z2009-04-21T18:35:17Z<p>I figured out what the issue was. It's an IE bug dealing with IE, HTTPS and addons. (See <a href="http://simonwillison.net/2008/May/30/radiacnet/" rel="nofollow">here</a>)</p>
<p>It was a caching issue. When I set:</p>
<pre><code> header("Cache-Control: maxage=1");
header("Pragma: public");
</code></pre>
<p>(see <a href="http://us.php.net/manual/en/function.header.php#83219" rel="nofollow">here</a>), the PDF was in cache long enough for the adobe reader add-on to grab it.</p>