如何在Windows 8上运行的Laravel 4上安装wkhtmltophp?

时间:2014-09-29 15:33:38

标签: php apache laravel wkhtmltopdf

我在运行Laravel 4的Win 8上有一个WAMP服务器,我试图让wkhtmltophp正常工作。

我运行了从here(64位“Windows(MSVC 2013)”)下载的Windows安装程序。

我首先将它安装到C:\ Program Files \ wkhtmltopdf中,然后我尝试将它安装到C:\ Program Files(x86)\ Apache Group \ Apache2 \ htdocs \ gitt \ vendor \下的laravel / vendor目录中wkhtmltopdf

自然我把我的文件夹更改为匹配/app/config/local/laravel-pdf.php,在这个文件中我有

return array(
    //'bin' => '/usr/bin/wkhtmltopdf'
    'bin' => base_path() . '/vendor/wkhtmltopdf/bin'
);

每次运行脚本时,都会收到错误“proc_open():CreateProcess失败,错误代码 - 5”

不确定我缺少什么。在Mac上的另一个开发人员能够将它安装在他身边,所以laravel也安装了/ vendor / mikehaertl / phpwkhtmltopdf,所以我将第92行更改为:

class WkHtmlToPdf
{
    #protected $bin = '/usr/bin/wkhtmltopdf';
    protected $bin = '/Program Files (x86)/Apache Group/Apache2/htdocs/gitt/vendor/wkhtmltopdf/bin/wkhtmltopdf.exe';
etc......

仍有同样的错误。我迷路了!任何帮助将不胜感激! :)

error screenshot

0 个答案:

没有答案