我在我的服务器" Windows Server 2008" 上安装了软件imagemagick。
在cmd中它工作正常,所有命令都有效。
但是当我尝试用PHP做的时候:
$command = "convert fdfdf.jpeg dfdf2.jpeg";
exec($command, $output);
它不起作用。我得到一个空白页面,没有任何反应,
我已将以下所需的所有权限授予以下内容:
cmd.exe
whomi.exe
c:\ImageMagick. execute & read to iis_iusrs and everyone.
安全模式已关闭。
我还能做些什么才能让它发挥作用?
答案 0 :(得分:1)
试试这个
$command = "convert fdfdf.jpeg dfdf2.jpeg 2>&1";
exec($command, $output);
var_dump($output);