我使用KnpSnappyBundle在我的Symfony2应用程序中生成PDF。 它可以在我的本地wamp上使用配置正常工作:
binary: "\"C:\\Program Files\\wkhtmltopdf\\bin\\wkhtmltopdf.exe\""
我尝试使用该应用程序,但在根目录下使用带有wkhtmltox的文件夹配置:
binary: %kernel.root_dir%/../wkhtmltox/bin/wkhtmltopdf
它不起作用。它收到以下消息:
The exit status code '127' says something went wrong:
stderr: "sh: wkhtmltox/bin/wkhtmltopdf: No such file or directory
"
stdout: ""
command: wkhtmltox/bin/wkhtmltopdf --lowquality
'/tmp/knp_snappy595a4fa89a6676.24945632.html'
'/tmp/knp_snappy595a4fa89a6a59.72414975.pdf'.
我正在使用OVH的虚拟主机服务器。
答案 0 :(得分:1)
您可以尝试从https://github.com/h4cc/wkhtmltopdf-amd64
安装wkhtmltopdf要求i386的包装:
composer require h4cc/wkhtmltopdf-i386 "0.12.3"
amd64 with:
composer require h4cc/wkhtmltopdf-amd64 "0.12.3"
二进制文件将位于:
vendor/h4cc/wkhtmltopdf-i386/bin/wkhtmltopdf-i386
或
vendor/h4cc/wkhtmltopdf-amd64/bin/wkhtmltopdf-amd64
对于后者,services.yml将如下所示:
knp_snappy:
pdf:
enabled: true
binary: '%kernel.root_dir%/../vendor/h4cc/wkhtmltopdf-amd64/bin/wkhtmltopdf-amd64'
options: []
temporary_folder: '%kernel.cache_dir%/snappy'
通过将其安装在供应商文件夹中,您将不再依赖于运行应用程序的计算机。
答案 1 :(得分:0)
我通过谷歌搜索找到了这个帖子,所以我发布了我的解决方案,以防有人帮忙。
KNP Snappy在我的案例中运行的命令是vendor/h4cc/wkhtmltopdf-i386/bin/wkhtmltopdf-i386
,我得到了相同的#34;没有这样的文件或目录"错误。
我很困惑,因为我可以看到这个文件,它是可执行的:
$ ls -al vendor/h4cc/wkhtmltopdf-i386/bin/wkhtmltopdf-i386
-rwxr-xr-x 1 1000 1000 41424004 Nov 7 09:07 vendor/h4cc/wkhtmltopdf-i386/bin/wkhtmltopdf-i386
但是当我试图运行它时......
$ vendor/h4cc/wkhtmltopdf-i386/bin/wkhtmltopdf-i386
-bash: vendor/h4cc/wkhtmltopdf-i386/bin/wkhtmltopdf-i386: No such file or directory
我很困惑,因为似乎错误是可执行文件不存在,而且显然确实存在。
事实上,问题是我试图使用32位版本的可执行文件,而我的机器是64位:
$uname -a
Linux mybox 3.2.0-4-amd64 #1 SMP Debian 3.2.54-2 x86_64 GNU/Linux
(参见amd64
部分)
所以我不得不在config.yml中更新这个位:
knp_snappy:
pdf:
binary: # this was the path to the 32-bit executable; I had to update it to use the 64-bit version.