0

我编写并维护了一个网站,两周前的 3 月 11 日星期一……就在两次 IE 更新和夏令时生效之后。这段代码坏了,但只适用于运行 IE8 的 Windows XP 机器,并且只适用于 SSL 加密。问题是我需要安全地传输这个文件。此代码同样适用于 XP 机器上的 firefox,或 Windows 7 上的 IE 9

该文件根据请求创建并立即删除

问题不是间歇性的......它一直失败......而且很快(基本上立即......所以没有超时问题或其他东西)

这是错误:http: //i.imgur.com/j0cOJ0L.png

这是当前的 PHP 文件:

//////////////////
// Download script
//////////////////

$path = $_SERVER['DOCUMENT_ROOT']."/mysite/"; // change the path to fit your websites document structure
$fullPath = $path.$B->LastName.$P->Property_ID.".fnm"; 
if ($fd = fopen ($fullPath, "r")) {
    $fsize = filesize($fullPath);
    $path_parts = pathinfo($fullPath);
    $ext = strtolower($path_parts["extension"]);
    switch ($ext) {
       case "fnm":
        header("Content-type: application/fnm"); // add here more headers for diff. extensions
       header("Content-Disposition: attachment; filename=\"".$path_parts["basename"]."\""); // use 'attachment' to force a download
        break;
        default;
        header("Content-type: application/octet-stream");
        header("Content-Disposition: filename=\"".$path_parts["basename"]."\"");
    }
    header("Content-length: $fsize");
    header("Cache-control: private"); //use this to open files directly
    while(!feof($fd)) {
        $buffer = fread($fd, 2048);
        echo $buffer;
    }
}
fclose ($fd);

////////////////////////
//Delete the file from the server
/////////////////////////
$myFile = $path.$B->LastName.$P->Property_ID.".fnm"; 
unlink($myFile);

exit;
4

1 回答 1

4

当我运行测试时,似乎只需要将缓存控制设置为 Private,并添加Pragma: private标头
示例代码:

header('Content-Disposition: attachment; filename='.urlencode($zipFileName));
header('Content-Type: application/zip');
header('Content-Length: '.filesize($zipFileName) );
header("Cache-Control: private");
header("Pragma: private");
readfile($zipFileName);


通过 https 像 IE8 一样工作。

于 2013-05-01T15:57:30.323 回答