I have installed ImageMagick (http://www.imagemagick.org/script/download.php) on a linux server (following the installation steps) - i which to migrate a php application on this new server.
$which mogrify
returns
/usr/local/bin/mogrify
Although mogrify CAN be called from the shell it cannot be found from a server side script (php).
The script contains a system([args]) function which executes the programm [args].
So system('mogrify --someoptions') does nothing at all.
Any ideas on what is wrong? Setup of imagemagick or problem from the php script?
NOTE: The same script executes succesfully on an existing server. On the new server the call to mogrify does nothing at all (permissions and settings are the same).