Web Hosting Talk







View Full Version : Path to ImageMagick?


kreativ
08-24-2002, 06:38 PM
How do I locate the path to ImageMagick?
When I run PerlDiver, I see that it's an installed module.

sitekeeper
08-24-2002, 06:48 PM
Type: "locate ImageMagick" at the command prompt in linux.

Try typing: "/usr/X11R6/bin/convert --help | less" at the command prompt in linux or "/usr/bin/convert --help | less"





Try /usr/X11R6/bin/

kreativ
08-24-2002, 06:53 PM
Thanks for the tips. No shell access though. :(

Would someone on a Plesk box know where it's located?

Lats
08-24-2002, 06:55 PM
How about asking your host - they're sure to know.


Lats...

sitekeeper
08-24-2002, 07:09 PM
Would you mind posting what program you are trying to run? It might help...

kreativ
08-24-2002, 07:14 PM
oh yes, it's 4images image gallery script. It says to enter the path to imagemagick.

Freedom
08-24-2002, 07:27 PM
To check use the attached script...
This should return the path for you.
As well as many other locations and info.

dandanfirema
08-24-2002, 09:38 PM
I would try /usr/local/bin/convert

Rochen
08-24-2002, 09:39 PM
For us, it's at:

/usr/local/lib/ImageMagick

Freedom
08-24-2002, 09:44 PM
/usr/bin/X11
and like dandanfirema said /usr/local/bin/convert

I would start by asking your host to tell you if you really wanna know.

weeps
08-25-2002, 01:37 AM
upload this as a php file...

<?php
$location = `whereis imagemagick`;
echo "Location of ImageMagick: " . $location;
?>

kreativ
08-25-2002, 03:57 AM
Thanks for the help. :)

Check out the script Freedom posted. Pretty useful. Even reports server uptime and load averages. I got the ImageMagick path from there.

Thanks Freedom!