我有安装了最新xampp的远程 Windows 2012 (请参阅最后编辑)服务器。
用户通常可以从那里下载文件(小文件和非常大文件),但有一些文件(包含相同pdf的pdf和zip文件,但不包含内部相同文件的rar),其下载始终保持相同的大小。
基本上下载开始正常但是在一定的大小,在同一个文件上始终相同,它会挂起一段时间然后停止。
这是当前的代码:
header("X-Sendfile: ".$pathTofile);
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"$filename\"");
我确定的一些事情:
编辑:
我已经改变了webserver,转而使用 Uniform Server (参见最后一个编辑),并尝试了另一个php脚本:
function send_file($position, $name) {
ob_end_clean();
$path = $position.$name;
if (!is_file($path) or connection_status()!=0) return(FALSE);
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Expires: ".gmdate("D, d M Y H:i:s", mktime(date("H")+2, date("i"), date("s"), date("m"), date("d"), date("Y")))." GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Content-Type: application/octet-stream");
$filesize=filesize($path);
header("Content-Length: ".$filesize);
header("Content-Disposition: inline; filename=$name");
header("Content-Transfer-Encoding: binary\n");
if ($file = fopen($path, 'rb')) {
while(!feof($file) and (connection_status()==0)) {
print(fread($file, 1024*8));
flush();
}
fclose($file);
}
return((connection_status()==0) and !connection_aborted());
}
Strangley页面忽略了Content-Length标题,下载工作!!
更多的strangley,我试图通过添加这一行来使Content-Length工作:
header("Content-Range: 0-".($filesize-1)."/".$filesize);
或/和禁用gzip压缩如下:
apache_setenv('no-gzip', '1');
在两种情况下,内容长度都有效,但下载停止在同一点!!!
这让我发疯了!!!
EDIT 23-10-2018:我们最近使用新的apache安装打开了debian服务器。问题似乎仍然存在。我还在本地提供商的共享网络服务器上尝试相同的相同脚本,令人惊讶的是它完美运行。 任何帮助表示赞赏....