使用php或xsendfile

时间:2017-11-09 13:53:53

标签: php apache pdf x-sendfile

我有安装了最新xampp的远程 Windows 2012 (请参阅最后编辑)服务器。 用户通常可以从那里下载文件(小文件和非常大文件),但有一些文件(包含相同pdf的pdf和zip文件,但不包含内部相同文件的rar),其下载始终保持相同的大小。 基本上下载开始正常但是在一定的大小,在同一个文件上始终相同,它会挂起一段时间然后停止。 这是当前的代码:

header("X-Sendfile: ".$pathTofile);
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"$filename\"");

我确定的一些事情:

  • 文件大小无关紧要。问题显示大文件或小文件,我对其他非常大的文件没有问题
  • 我尝试了至少5个不同的PHP脚本,但结果相同
  • 我已经实现了xsendfile。相同的结果
  • 如果我尝试在浏览器中查看pdf,则无法使用
  • 如果我直接从服务器下载文件,它们可以在各方面正常工作
  • 我尝试过不同的浏览器和不同的ISP。相同的结果
  • 如果我在网站上执行相同的操作,但在服务器上进行本地操作,则一切正常

编辑: 我已经改变了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服务器。问题似乎仍然存在。我还在本地提供商的共享网络服务器上尝试相同的相同脚本,令人惊讶的是它完美运行。 任何帮助表示赞赏....

0 个答案:

没有答案