Ghostscript | Unrecoverable Error, exit code 1(鬼脚本 |不可恢复的错误,退出代码 1)
本文介绍了鬼脚本 |不可恢复的错误,退出代码 1的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个用来合并 PDF 的 shell 脚本,在今天之前,它似乎运行良好.
I have a shell script that I've been using to merge PDFs, and prior to today, it seems to have been working fine.
现在,当我跑步时,我收到以下消息:GPL Ghostscript 9.06:不可恢复的错误,退出代码 1
Now when I run, I get the message: GPL Ghostscript 9.06: Unrecoverable error, exit code 1
它会生成一个空白 PDF,而不是合并的 PDF.这是我的代码:
It produces a blank PDF instead of the merged PDF. Here is my code:
<?php
$pdf1 = "file_1.pdf";
$pdf2 = "file_2.pdf";
$fileArray= array($pdf1,$pdf2);
$datadir = "/usr/pdf_merge/merged";
$outputName = $datadir."merged_new.pdf";
$cmd = "gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=$outputName ";
//Add each pdf file to the end of the command
foreach($fileArray as $file) {
$cmd .= $file." ";
}
$result = shell_exec($cmd);
有什么想法可能是错的吗?
Any ideas what could be wrong?
我正在使用 Debian 运行 Apache.
I'm running Apache with Debian.
谢谢
推荐答案
把这个$cmd
改成
$outputName = "merged_new.pdf";
$cmd = "cd ".$datadir." && gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=$outputName ";"
这篇关于鬼脚本 |不可恢复的错误,退出代码 1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:鬼脚本 |不可恢复的错误,退出代码 1


猜你喜欢
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Laravel 仓库 2022-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01