当我去/fileDownload
我收到 500 内部服务器错误 - RuntimeException:
进程因“0”信号而停止。
控制器动作:
public function fileAction()
{
$html = $this->render('MyBundle:Downloads:file.html.twig', array(
'fileNumber' => '1234'
));
return new Response(
$this->get('knp_snappy.pdf')->getOutputFromHtml($html),
200,
array(
'Content-Type' => 'application/pdf',
'Content-Disposition' => 'attachment; filename="file.pdf"'
)
);
}
我已经为 WKHTMLTOPDF 使用了终端命令,它已经成功生成了 PDF。它只是在 Symfony2 应用程序中不起作用。
在我的 config.yml 中:
knp_snappy:
pdf:
enabled: true
binary: /usr/local/bin/wkhtmltopdf
options: []