We installed MediaWiki here at work (and it's awesome). Images and image uploading work fine, but we can't get image thumbnailing to work. I've installed ImageMagick 7 on the host machine (Windows) and I think I've made all of the correct changes to LocalSettings.php, but whenever we try thumbnailing, Apache crashes. No messages are logged in the error log until it restarts. I know ImageMagick 7 uses magick instead of convert, so I have that change.
Here are the pertinent entries from the PHP file:
- $wgSVGConverterPath = ;
- $wgUseImageMagick = true;
- $wgUseImageResize = true;
- $wgTmpDirectory = true;
- $wgImageMagickConvertCommand = 'C:/Program Files/ImageMagick-7.0.3-Q16/magick.exe';
I don't actually have a "Tmp" directory defined, but I couldn't find a setting that sets that.
Any idea of what I can check?