gpt4 book ai didi

php - 'unoconv' 脚本在终端中有效,但在我的 laravel Controller 中通过 exec() 函数调用时无效

转载 作者:行者123 更新时间:2023-12-04 16:16:29 25 4
gpt4 key购买 nike

我正在尝试使用以下 shell 脚本将 docx 文件转换为 pdf:

unoconv -f pdf tempfile.docx

在 Laravel 中,我有一个 Controller 函数,我使用 phpWord 创建一个临时 docx 文件,我需要将其转换为 pdf 并返回其 url。

我在我的 ubuntu 16.04 服务器上使用 apt-get 安装了 unoconv,当我通过 ssh 进入服务器并通过我的终端运行 unoconv 时它 100% 正确地工作,但是当我在我的 Controller 中使用 exec() 运行它时没有任何反应!我认为这可能是 docx 的路径由于某种原因不正确,但我不确定为什么,因为我正在使用确切的方法来获取将正确返回 .docx 位置的文件路径

        $path_copy = 'store/' . $email . '_higher_results.docx';
$path_copy_pdf = 'store/' . $email . '_higher_results.pdf';
$filename = public_path($path_copy);

$the_download->saveAs($filename); //saves my .docx created by phpWord

exec('unoconv -f pdf ' . $path_copy); //should take the .docx created above and convert it into a pdf

//return $path_copy; //this returns the correct path of the .docx, and adds it to a link in my .vue component which allows the user to download the .docx
return $path_copy_pdf; //this SHOULD return the correct path of the PDF but the PDF is never created at the exec() step

docx(以及最终的 pdf)文件存在于我的 laravel 公共(public)文件夹中,路径为:/public/store/tempfile.docx

我也试过使用上面的 $filename 变量,它使用 public_path() 调用路径,也没有骰子。

我在 exec() 函数中获取 .docx 文件路径的方式是否存在语法问题?还有其他问题吗?

谢谢!

编辑:我现在使用 Symfony 来运行我的 shell 脚本但同样的问题,查看更新版本并查看是否有任何特定的包路径我需要在 unoconv 可执行文件中更改。也可能是某种权限问题,因为 root 用户可以运行该命令,但 www-data 用户不能! :(

最佳答案

回答我自己的问题,因为这花了我三年时间才弄清楚:

问题是在命令行中,当我通过 ssh 连接到我的服务器时,我正在运行“root”并且服务器运行 exec()/Symfony 命令作为 www-data

解决方案是在运行命令之前设置 www-data 的主目录

 $process = new Process("HOME=".getCWD()." && export HOME && libreoffice --headless --convert-to pdf store/mar_maribov_higher_results.docx --outdir store");
$process->run();
return $path_copy_pdf;

来源:https://stackoverflow.com/a/37666818/3812918

关于php - 'unoconv' 脚本在终端中有效,但在我的 laravel Controller 中通过 exec() 函数调用时无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56480782/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com