mpdf是直接下载网络服务器

时间:2013-06-18 05:42:16

标签: php tcpdf mpdf

我正在使用mpdf在PHP中生成pdf报告,当我使用XAMPP在我的开发PC上进行测试时,pdf报告显示在浏览器中,但当我将其托管到网络服务器时,它无法在浏览器中打开并开始下载

这是我的代码

include("mpdf/mpdf.php");
$mpdf=new mPDF();
$html = 'some html'
$mpdf->WriteHTML($html);
$mpdf->mirrorMargins = 1;
$mpdf->SetDisplayMode('fullwidth','continuous');
$mpdf->output();
exit();

webserver ???

有什么问题
  

修改

我发现这是由于安装了IDM,如何防止IDM下载文件

1 个答案:

答案 0 :(得分:0)

也许服务器发送了不同的标题信息。

// set these two header to open the file in your browser
header("Content-Type: application/pdf");
header("Content-Disposition: inline; yourfilename.pdf");

include("mpdf/mpdf.php");
$mpdf=new mPDF();
$html = 'some html'
$mpdf->WriteHTML($html);
$mpdf->mirrorMargins = 1;
$mpdf->SetDisplayMode('fullwidth','continuous');
$mpdf->output();
exit();