Hi,
After uploading certain images when i view the content i get this error
ImageMagick reported an error: /usr/bin/convert: Unable to open file (sites/default/files/images/P30, Galvanized Pipe, Yello-Bowl, ABS Heads, Wye, Foot Treadle.jpg) [No such file or directory].
i have tried few solutions from forum but it dint help me in any way.
I have followed this link http://drupal.org/node/207359 and did the code changes in imageapi_imagemagick.module
if ($h = proc_open($convert_path .' '. $command_args, $descriptors, $pipes, $_SERVER['DOCUMENT_ROOT'])) {
+ global $base_url;
+ if ($h = proc_open($convert_path .' '. $command_args, $descriptors, $pipes, $_SERVER['DOCUMENT_ROOT'].$base_url)) {
$output = '';
while (!feof($pipes[1])) {
$output .= fgets($pipes[1]);
even this also dint helped me
I have also removed all the spaces and commas from the title but still the problem persist.
Is there any way to get this fixed?
Please share your ideas or suggestions on this . Many thanks !