Skip to content

Instantly share code, notes, and snippets.

@pascalbaljet
Last active November 26, 2020 09:10
Show Gist options
  • Save pascalbaljet/bd7b8fd63b76c7564189 to your computer and use it in GitHub Desktop.
Save pascalbaljet/bd7b8fd63b76c7564189 to your computer and use it in GitHub Desktop.
Install Imagick 3.4.0 on PHP 7.0 server (Laravel Forge)
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
apt-get install pkg-config libmagickwand-dev -y
cd /tmp
wget https://pecl.php.net/get/imagick-3.4.0.tgz
tar xvzf imagick-3.4.0.tgz
cd imagick-3.4.0
phpize
./configure
make install
rm -rf /tmp/imagick-3.4.0*
echo extension=imagick.so >> /etc/php/7.0/cli/php.ini
echo extension=imagick.so >> /etc/php/7.0/fpm/php.ini
service php7.0-fpm restart
service nginx restart
@wonjun27
Copy link

wonjun27 commented Dec 15, 2016

This gist worked for me. Thank you.

@intrepidws
Copy link

Where do these commands actually place the imagick.so file itself? What directory?

@jacobmllr95
Copy link

@shayzalman
Copy link

Thanks
Worked good for me with PHP 5.6.30-0+deb8u1 (until line 16 - did it manually)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment