March, 2007 Archive
Due to lack of ‘findable’ nice WD My Book icons, heres one we made for Windows XP 48×48 downwards 32-bit only.
http://www.codeblog.co.uk/wp-content/uploads/2007/03/wd-mybookicon.zip
I have found a fair few articles on how to force a file download promt with PHP for a recognised MIME type. After spending hours trying different methods I found the following that works for me on IE6+.
header(‘Content-type: application/octetstream’);
header(‘Content-Disposition: attachment; filename=”myfile.pdf”‘);
readfile(“/local/path/to/file/”);
exit();







