Does webhost have ImageMagick
-
- New to forums
- Posts: 9
- https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
- Joined: Sun Jun 15, 2014 8:51 am
Does webhost have ImageMagick
Does the webhost have ImageMagick?
ImageMagick is a image convert utility.
ImageMagick is a image convert utility.
Re: Does webhost have ImageMagick
Yes, all of our webhosting plans support ImageMagick.
@Kraze^NFo> Juski has a very valid point
@Juski> Got my new signature, thanks!
@Kraze^NFo> Out of context!
@Juski> Doesn't matter!
@Juski> You said I had a valid point! You can't take it back now! It's out there!
@Juski> Got my new signature, thanks!
@Kraze^NFo> Out of context!
@Juski> Doesn't matter!
@Juski> You said I had a valid point! You can't take it back now! It's out there!
Re: Does webhost have ImageMagick
What is the Full path to ImageMagick Convert utility?
We are using E107 CMS and it ask for that.
We are using E107 CMS and it ask for that.
Re: Does webhost have ImageMagick
The full path should be: /usr/bin/convert
Re: Does webhost have ImageMagick
I still get a error with that -
Path to ImageMagick appears to be incorrect
is it the correct path?
Path to ImageMagick appears to be incorrect
is it the correct path?
Re: Does webhost have ImageMagick
I checked on my webhosting and it's showing that as the correct path.
Code: Select all
codyweb@hosted15 ~ $ /usr/bin/convert
Version: ImageMagick 6.8.8-10 Q16 x86_64 2014-04-07 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
Features: DPC Modules OpenMP
Re: Does webhost have ImageMagick
Where did you find that at?
Re: Does webhost have ImageMagick
It is a command ran from ssh on the web hosting machine.
It is in the same location for me on hosted5.
It is in the same location for me on hosted5.
Not a NFO employee
Re: Does webhost have ImageMagick
idk much about ssh, My php info file shows that it's enabled but not the directory/path for it.
Re: Does webhost have ImageMagick
Where is the software asking for the patch to imagemagick? I installed the cms software on my web hosting account here at NFO to test and it didn't ask me for the path, even after I changed the "method used to resize images" to ImageMagick.
Not a NFO employee
Re: Does webhost have ImageMagick
Depending on the version of the CMS you got - I have 1.04 and not 2.xx
in 1.04 it's in the Admin Area > Images
I created a page to test it and get the same path as shown above but it still gives me an error and the plugin gallery I use isn't detecting it either.
http://1stcavdiv.us/Tester.php
in 1.04 it's in the Admin Area > Images
I created a page to test it and get the same path as shown above but it still gives me an error and the plugin gallery I use isn't detecting it either.
http://1stcavdiv.us/Tester.php
Re: Does webhost have ImageMagick
I'm not sure why it is saying the path is incorrect, have you tried using GD instead of ImageMagick?
Not a NFO employee
Re: Does webhost have ImageMagick
Yes but had some issues with the image gallery that I had set up - idk why it says its not there - very odd - maybe a re-complie of ImageMagick might work idk, the php info page shows Image Magick is installed but no path....
Might just be the CMS acting stupid.
Might just be the CMS acting stupid.
Re: Does webhost have ImageMagick
Running this simple PHP code does return that ImageMagick is installed:
Got the code from: http://stackoverflow.com/questions/4208 ... stallation
Code: Select all
<?php
if( class_exists("Imagick") )
{
echo "Imagick is installed";
}else{
echo "Imagick is not installed";
}
?>
Not a NFO employee