尝试使用DOMPDF在服务器中保存.pdf时出错500

时间:2017-02-02 10:06:34

标签: php dompdf

我已经阅读了很多关于这个主题的问题,但他们的解决方案都没有对我有用。我正在尝试将DOMFILE创建的pdf文件上传到我的服务器,但是我收到500错误。

我查看了我的access_log和error_log但没有任何内容。我还通过Filezilla检查了权限,它们是正确的(请告诉我,如果我做得好):

enter image description here

我的代码非常简单,只关注这个问题:

<?php
require_once "dompdf/autoload.inc.php";

$html =
    '<html><body>'.
    '<p>Some data to be transformed to pdf.</p>'.
    '</body></html>';

$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->set_paper( "a4" , "portrait");
$dompdf->render();

$pdf = $dompdf->output();

file_put_contents("test.pdf", $pdf);
?>

0 个答案:

没有答案