Hi All,
I am running convert command on Godaddy using php script with the help of exec function of php.
<?php
$cmd = $this->convert ." ".$path." -format %c -depth 8 histogram:info:-";
$output = array();
exec($cmd, $output);
?>
It gives me empty array.
while when I am running the same command using command prompt or shell prompt, It's working.
" /usr/local/bin/convert /home/content/f/l/o/floordecor/html/app/webroot/img/admin/designs/103/103_Rectangle.png -format %c -depth 8 histogram:info:- "
while the same php script is working on my local Linux system.
Any one give me suggestion on the same.
