Hi,
I am serving pdf files between 1-2MB in size. IE reserves all the pdfs from cache when I use the following headers and code:
header("Cache-Control: max-age=3600, must-revalidate");
header("Content-Type: application/pdf");
header("Content-Disposition: inline; filename=$name");
header("Content-Length: ".filesize($path));
readfile($path);
The variables are supplied from the previous script's form using get method.
This doesn't work for Netscape 4 or 6 and I've tried all kinds of additional headers with no luck. I've tried not using any headers for netscape and that doesn't work either. Has anybody run into this problem or have any suggestions? Thanks.