fmw42 wrote:First see if one of these works:
<?php
system("/usr/local/bin/convert -version");
?>
<?php
$IM_version=shell_exec("/usr/local/bin/convert -version");
echo $IM_version
?>
<?php
exec("/usr/local/bin/convert -version",$out,$returnval);
print_r($out[0]);
?>
You may have to change the path to wherever your host has IM. Another path might be /user/bin/convert.
these 3 code gives:
1.
Version: ImageMagick 6.5.1-0 2009-04-03 Q16 OpenMP
http://www.imagemagick.org Copyright: Copyright (C) 1999-2009 ImageMagick Studio LLC
2.
Version: ImageMagick 6.5.1-0 2009-04-03 Q16 OpenMP
http://www.imagemagick.org Copyright: Copyright (C) 1999-2009 ImageMagick Studio LLC
3.
Version: ImageMagick 6.5.1-0 2009-04-03 Q16 OpenMP
http://www.imagemagick.org
I KNOW that ImageMagick IS INSTALLED but It do NOT work, I have tested with two my scripts. It do not show image at registration page with image verification.
I need any ImageMagick simple testing script,