Help with godaddy install

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: Help with godaddy install

Post by Bonzo »

ImageMagick needs to be installed by the system administrator.
Check out the coppermine gallery forum for the way to get ImageMagick to work with coppermine gallery as there are loads of posts there about it.

To find if ImageMagick is installed create a php page containing this, upload it to your server and navigate to the page to check the output which should be something like: convert is /usr/local/bin/convert

Code: Select all

<?php
echo "<pre>";
system("type convert"); 
echo "</pre>";
?>
Keep a note of the output as you will probably need the path in your gallery code config file.
Post Reply