为什么这个 shell 命令没有给出期望的结果?
我在服务器上使用 wkhtmtoimage 库,并且当我在 PuTTY 中运行时,我已设法获取以下命令的输出:
wkhtmltoimage www.google.com test.jpg
但是,当我使用以下 shell 命令时,我没有得到输出,我不知道为什么。
$filnename = "test.jpg";
$url = "http://www.google.com";
shell_exec("wkhtmltoimage $url $filename");
即使我尝试使用这种变体,但仍然没有得到预期的结果:
shell_exec("/usr/local/bin/wkhtmltoimage $url $filename");
我做错了什么?
编辑:
我下载了Linux二进制文件并将其放入文件夹中然后运行它。是否需要重新启动受影响的更改的服务器?
允许使用 shell_exec 命令,因为我们将它用于 ffmpeg(已经安装了一个)
I am using the wkhtmtoimage library on my server, and I have managed to get the output for the following command when I am running in PuTTY:
wkhtmltoimage www.google.com test.jpg
But, when I use the following shell command I don't get the output, and I don't know why.
$filnename = "test.jpg";
$url = "http://www.google.com";
shell_exec("wkhtmltoimage $url $filename");
Even I tried with this variation instead, but still without getting the desired result:
shell_exec("/usr/local/bin/wkhtmltoimage $url $filename");
What am I doing wrong?
Edit:
I downloaded the Linux binary and put it into the folder then I ran it.Whether I need to restart the server the changes affected?
shell_exec command is allowed because we used it for ffmpeg(already installed one)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我无法给出确切的解决方案,但如果您可以尝试我写的内容,我可能会有所帮助。如果我提供的解决方案不起作用,我将列出更多解决方案。
解决方案1:
在网址和文件名周围使用引号
解决方案建议 2:
尝试将流重定向到文件并键入内容。
I cannot give an exact solution but if you can try out what I write I might be of help. I will list more solutions if the one I am providing does not work.
Solution proposal 1:
Use quotes around url and filename
Solution proposal 2:
Try redirecting streams to files and type the contents.
可能是 PHP(或 Apache)运行的用户没有运行此工具的权限。尝试打印此命令的输出,或者仅使用 passthru() 直接打印命令的输出。
另一个解决方案是将输出传递到@Cem_Kalyoncu 编写的文件。
May be user under which PHP (or Apache) runs have no permissions to run this tool. Try printing output of this command or just use
passthru()
to directly print output of command.Another solution is to pass output to files as @Cem_Kalyoncu wrote.