• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

install imagemagick

EvgeniB

New Pleskian
Can i install imagemagick on centos 6.5 with this commands?

ImageMagick:

[root@server ~]# yum install ImageMagick
[root@server ~]# yum install ImageMagick-devel

PHP-imagick:
[root@server ~]# yum install gcc (Please note: if it is already installed, then it will be updated if required)
[root@server ~]# yum install make automake
[root@server ~]# yum install php-pear
[root@server ~]# yum install php-devel
[root@server ~]# pecl install imagick

Now you will have to add the imagick extension in your PHP condifuration file:

[root@server ~]# cd /etc/php.d/[root@server ~]# nano -w imagick.ini

Then you put following line in that file:

extension = “imagick.so”

And save it with <CTRL> <O>

After finishing this, you will have to restart Apache as follows:

[root@server ~]# service httpd restart

THANK'S :)
 
Try following these steps and you should be set:

# yum install gcc
# yum install ImageMagick
# yum install ImageMagick-devel
# yum install php-pear
# yum install php-devel
# pecl install imagick (hit enter if you receive a prompt)
# echo "extension=imagick.so" > /etc/php.d/imagick.ini
# service httpd restart
 
Back
Top