The following code works in FireFox, but When using IE, it will not download the file. Its always 0kb... Any ideas?
$SEARCH = mysql_fetch_object($s_query);
$fsize = filesize(cleanData($SEARCH->url));
header("Pragma: public"); // required
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false); // required for certain browsers
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=" . str_replace(" ", "_",$SEARCH->title) . ".mp3;");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".$fsize);
ob_clean();
flush();
readfile(cleanData($SEARCH->url));