从php执行时找不到xauth命令

时间:2019-06-24 12:24:17

标签: php wkhtmltopdf xvfb xauth

我想用wkhtmltopdf和php(https://github.com/mikehaertl/phpwkhtmltopdf)创建一个pdf,但出现错误: 其中:((null))中没有xauth xvfb运行:错误:找不到xauth命令

我尝试重新安装Xvfb,并尝试安装xorg-auth,但是它不起作用。

我正在使用以下代码:

$view = "<some-interesting-html></some-interesting-html>"
$pdf = new Pdf($view);
$pdf->setOptions(array(
    'no-outline',
    'use-xserver',
    'commandOptions' => array(
        'useExec' => false,
        'enableXvfb' => true,
        'xvfbRunBinary' => '/usr/bin/xvfb-run',
    ),
));

if (!$pdf->saveAs($filename)) {
    $error = $pdf->getError();
    $this->debug($error);
}

我尝试了不同的选项,甚至没有设置选项,但都返回了相同的错误

服务器正在CentOS Linux版本7.6.1810(核心)上运行

0 个答案:

没有答案