Kenneth Rainey wrote:
If anyone has successfully configured their wiki to work with ImageMagick on a windows platform, I could use a few moments of guidance. I'm trying to set up the thumbnailing functionality, but every time I test it, I can't get ImageMagick to write the file.
[snip]
$wgImageMagickConvertCommand = "c:\program files\ImageMagick-6.0.4-Q16";
That looks like a directory; you want it to point directly at the convert command (probably convert.exe). Also note that PHP double-quoted strings, like C strings, consider the backslash \ to be a special character. To be safe you should always double it \ or it will fail when the following letter makes up a special escape sequence.
I'm also not sure that a command with spaces in it will work, but I'm not sure. (Windows is weird... :) You might have to put it inside quotes itself.
-- brion vibber (brion @ pobox.com)