header("Content-length: $size_kb");
		header("Content-type: $filetype");
		header("Content-Disposition: attachment; filename=$name");
		$data = fread(fopen($CONFIG['fileLocation'] . "$upload_time/$id.$extension", 'r'), $size_kb);
		echo $data;

I get the download prompt to come up but it errors out then? Has anyone found any IE hacks.

PS Works PERFECT in firefox. (.5% of browser market)

    Try adding these two headers

    header("Content-Transfer-Encoding: binary");
    header("Content-Type: application/force-download");
    

      I tried two things. I removed the 1st content type header and inserted those two. That did not work. 2nd I left both content headers. That did not work either. I read the msgs on php.net but they have not worked either????

      // this is the current download header code
      
      		header("Content-length: $size_kb");
      		header("Content-Transfer-Encoding: binary");
      		header("Content-Type: application/force-download");
      		//header("Content-type: $filetype");
      		header("Content-Disposition: attachment; filename=$name");
      
      
        Write a Reply...