我想在我的aws
linux服务器上将文件从doc转换为pdf.在我以前的机器上它工作正常,但现在我的新机器出现问题.唯一的区别是我已经从
PHP 7.0升级到
PHP 7.2.和libre办公室版本
原文链接:https://www.f2er.com/php/137306.htmlLibreOffice 6.0.1.1 00m0(Build:1)
我试过给libreoffice和执行命令但没有成功的包提供root权限.
这是我使用https://github.com/szonov/libreoffice-converter的包
我正在使用laravel 5.4.这是执行操作的包中的代码
$replacement = array( 'bin' => $this->bin,'convert_to' => $convert_to,'outdir' => $outdir,'source' => $this->source ); $cmd = $this->makeCommand($replacement); $cmd = "sudo ".$cmd; shell_exec($cmd); $result = false; if (file_exists($outfile)) { $this->mkdir(dirname($this->destination)); $result = rename($outfile,$this->destination); } // remove temporary sub directory rmdir($outdir); return $result;
我尝试追加sudo,因为当我执行命令并执行使用sudo时,它在命令行中工作.