Hi Mike,
Haven't had time to look at v6 yet. I'm still running 5.7 and haven't even checked through the forums for related info but:
I have just had to change the system calls to ImageMagick identify.exe and convert.exe to get them to work on an NT box. Is this a known issue? Thought I'd post here in case others are having similar problems.
The problem was that quotes in the systema call string were not being parsed - remove the \" s and it all works beautifully!
There are 2 system calls (3 lines of code to change for my setup) eg
$system_call.=" \"$object\" \"$image_thumb\"";
becomes:
$system_call.=" $object $image_thumb";
ImageMagick install tip on NT.
Download ImageMagick-i686-pc-windows.exe. I couldn't run the ImageMagick install exe on the remote box so ran it on a local PC then just created an ImageMagick directory with \modules and \config subdirectories, then copied all files from these 3 directories on my local machine to the new directories on the server. Next add the registry HKLM\Software\ImageMagick keys as described in the installation help files. I use Cgicommand.pl to run commandline stuff from a web browser (then delete it ffom the server!) and reg.exe to fiddle with the registry (be careful)