I have a problem with ie8 As ALWAYS. its not downloading rtf files i uploaded to server by my script. its saving in the database correctly
My download script is in php
$outname = stripslashes($attachment[0]['dis_attach_content']);
$type = stripslashes($attachment[0]['dis_attach_type']);
$name = stripslashes($attachment[0]['dis_attach_name']);
header("Content-type:" . $type);
header('Content-disposition: attachment; filename=' . $name);
echo($outname);
exit;
This is giving the error:

You can try to force the download:
Note; you should consider sending more headers: