I'm using ImageMagick for image conversion, called from PHP using system('convert -option $file ...')
This works fine for me on one instance (CentOS 6), but fails silently on another instance (CentOS 5 where ImageMagick is in /usr/local/bin). On that one, I have to run system('/usr/local/bin/convert -option $file ...')
Question is, how do I set the path in Apache so convert
works without the preceding /usr/local/bin