Alex_Ar
Новичок
скачивание pdf
Всем привет! Есть механизм скачивания, качается .exe, .doc, .rar, .pdf. Проблема в том, что не качается pdf. Почему? Как от этого избавится? Сам механизм:
$fd = fopen("file","r");
$file = fread($fd,$size);
$name = "file";
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/octetstream");
header("Content-Disposition: filename=$name;");
header("Content-Length: $size");
header("Content-Transfer-Encoding: binary");
print($file);
exit;
Всем привет! Есть механизм скачивания, качается .exe, .doc, .rar, .pdf. Проблема в том, что не качается pdf. Почему? Как от этого избавится? Сам механизм:
$fd = fopen("file","r");
$file = fread($fd,$size);
$name = "file";
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/octetstream");
header("Content-Disposition: filename=$name;");
header("Content-Length: $size");
header("Content-Transfer-Encoding: binary");
print($file);
exit;