提交文件并下载后,Internet Explorer会冻结

时间:2014-07-29 17:44:05

标签: php html internet-explorer

使用IE 11,我遇到了这个问题: 在html表单中我上传了一个文件,PHP代码只发送一个下载文件= => Internet Explorer现在挂起。 这似乎只是一个新的bug /行为,它在一周前的IE中没有问题。我使用的是IE 11.0.9600.17207,更新11.0.10(KB 2962872)。没有firefox或Chrome的问题。

以下是重现的代码: test5.php:

<!DOCTYPE html><html><head></head>
<body>
<form action="test4.php" method="post" enctype="multipart/form-data">
    <p><input name="myfile" type="file"></p>
    <p><input type="submit" name="getUpdate" value="Get Update"></p>
</form>
</body>
</html>

test4.php:

<?php
$update = "Ylpentuelps";
$filename = "test.text";
header("HTTP/1.1 200 OK");
header("Content-Type: application/octet-stream");
header("Content-Length: ".strlen($update));
header("Content-Disposition: attachment; filename=\"".$filename."\"");
header("Content-MD5: ".base64_encode(md5($update, true)));
print($update);
?>

如果我访问http://<myserver>/test5.php

并上传文件,我立即获得一个下载文件存储在Chrome和Firefox中,但是使用IE 11,浏览器会挂起。

0 个答案:

没有答案