Imagemagick

Status
Not open for further replies.

icywind

New Member
Messages
57
Reaction score
0
Points
0
Where is the imagemagick located?

Thanks for a fast response!
Edit:
Please reply... thank You!
 
Last edited:

adamparkzer

On Extended Leave
Messages
3,745
Reaction score
81
Points
0
We have some other photograph management software that you can install to your website. You may be interested in looking through Fantastico or Softaculous in your cPanel.
 

ah-blabla

New Member
Messages
375
Reaction score
7
Points
0
ImagMagick IS installed, which you will discover if you run 'convert', here's the first few lines of output:
Version: ImageMagick 6.4.8 2009-09-01 Q16 OpenMP http://www.imagemagick.org
Copyright: Copyright (C) 1999-2009 ImageMagick Studio LLC
[...]
You are going to have problems using it though, since php exec (and most language's equivalents) is disabled, and the native php ImageMagick interface seems disabled as well, however you can get around the exec block. GD is available however.

We have some other photograph management software that you can install to your website. You may be interested in looking through Fantastico or Softaculous in your cPanel.
ImageMagick is an image editing library, which programs use, not a photo management / gallery software btw.
 
Last edited:

garrettroyce

Community Support
Community Support
Messages
5,609
Reaction score
252
Points
63
ImagMagick IS installed, which you will discover if you run 'convert', here's the first few lines of output:You are going to have problems using it though, since php exec (and most language's equivalents) is disabled, and the native php ImageMagick interface seems disabled as well, however you can get around the exec block. GD is available however.


ImageMagick is an image editing library, which programs use, not a photo management / gallery software btw.

Code:
class_exists('imagick')

Returns false on lotus.

Additionally, there is no mention of imagemagick using get_loaded_extensions(). phpinfo() is disabled, but I don't see any way that it's possible for imagemagick to be working. Your workaround for exec is clever, but it looks like it may not go over well with the admins.
 
Last edited:
Status
Not open for further replies.
Top