Guest User

Untitled

a guest
May 30th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. Resource interpreted as Document but transferred with MIME type application/vnd.openxmlformats-officedocument.wordprocessingml.document
  2.  
  3. $file = "uploads/demo.docx";
  4. //text/html; charset=UTF-8 - С этим заголовком предупреждений нету
  5. header ("Content-Type: application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document; charset=UTF-8");
  6. header ("Accept-Ranges: bytes");
  7. header ("Content-Length: ".filesize($file));
  8. header ("Content-Disposition: attachment; filename=demo.docx");
  9. readfile($file);
  10.  
  11. <a href="http://server/uploads/demo.docx">Скачать</a>
Add Comment
Please, Sign In to add comment