Lampp和wkhtmltopdf无法从shell_exec工作

时间:2013-12-04 09:46:59

标签: php ubuntu wkhtmltopdf lampp

我试图运行以下php脚本:

error_reporting(E_ALL);
ini_set('display_errors', '1');

$cmd = "/usr/local/bin/wkhtmltopdf http://www.yahoo.com /opt/lampp/htdocs/filer/yahoo.pdf";
$t = shell_exec($cmd);
exit();

我安装了wkhtmltopdf,它可以从命令行完美运行。但是,当我运行上面的PHP脚本时,我得到以下错误:

/usr/local/bin/wkhtmltopdf: /opt/lampp/lib/libgcc_s.so.1: version `GCC_4.2.0' not found (required by /usr/lib/i386-linux-gnu/libstdc++.so.6)

我尝试将/usr/lib/gcc/x86_64-linux-gnu/4.6/libgcc_s.so复制到/opt/lampp/lib/ 没有成功。

有什么想法吗?

0 个答案:

没有答案