I have an exec line for imagemagick to see if an image is RGB
exec('identify -verbose '.$file, $exec);
var_dump($exec);
spits out:
array(0) { }
However if I run the command in shell, it runs and spits out quite a bit of information. This has worked before and now I'm wondering if there's some server setting that got changed to make it fail.