XF 1.2 gifs not animated when viewing my website...

Sean B.

Active member
so I have have a gif as my avatar on my site but its not animated like its supposed to be, I'm able to get it to animate on other XF sites except mine, it only seems to be gifs as other images on my site are just fine.


my site link is...www.kh-flare.net

if you take a look at my profile which you can view through this link you'll notice my avatar looks like a normal image, but its not its a animated gif made from a video, I dunno wut is causing that to occur but can someone help me and tell me how to fix this issue with my avatar?

also it seems to only be an issue in certain areas of the forum, but on my profile for whatever reason it's working like it should, but I want it to work in all areas of the forum, so any help would be very appreciated.

thank you.
 
The following assumed you have root access to your cpanel server.
ImageMagick is one of the most requested add-ons that allows for image manipulation.

CHECK IF ITS INSTALLED FIRST:
from root ssh
/scripts/checkimagemagick

INSTALLATION
/scripts/installimagemagick
Installation will take a couple minutes as it will install other packages needed by ImageMagick. After the installation, check that it is installed again and it should state the version.
/usr/bin/convert --version


It will give you something like:
Version: ImageMagick 6.4.8, etc

Imagick
Go to WHM -> Software -> Module Installers -> PHP Pecl (manage). On the box below “Install a PHP Pecl” enter “imagick” and click “Install Now” button – that’s all. Restart Apache.


Uninstall:

If you decide to uninstall it’s as easy as the installation process:
ImageMagick: /scripts/cleanimagemagick
Imagick: WHM -> Software -> Module Installers -> PHP Pecl (manage). Click on Uninstall button for Imagick
CHECKING WHERE ImageMagick is located:
from ssh use
whereis convert
should give you the directory

http://www.imagemagick.org/discourse-server/index.php
 
Top Bottom