The problem:
For some reason I can't get ImageMagick working on MediaWiki site. MediaWiki installed on Linux server. MediaWiki: 1.16.4. PHP: 5.2.17. ImageMagick: 6.6.0-4 2010-11-16 Q16
Using the next configuration in LocalSettings.php
$wgEnableUploads = true;
$wgUseImageMagick = true;
$wgImageMagickConvertCommand = "/usr/bin/convert";
$wgFileExtensions[] = 'svg';
$wgSVGConverter = 'ImageMagick';
path /usr/bin/convert available from the home directory. /image has the permissions: drwxt-xr-x.
As soon as I enable ImageMagick ($wgUseImageMagick = true;) all thumbnail generation stopping working (even for PNG, JPG, GIF). I get error message on all generated thumbnails: "Error creating thumbnail:" (without any additional message). If I disable it, that it works fine for PNG, GIF and JPG formats. But the problem that I have to support SVG format as well...
Any ideas how I can get ImageMagick working?
Regards, Alex