Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wesort/6a181fa9d586e65992dcc38d81d6bb8d to your computer and use it in GitHub Desktop.
Save wesort/6a181fa9d586e65992dcc38d81d6bb8d to your computer and use it in GitHub Desktop.
Install Imagick 3.4.3 on PHP 7.2 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.3.tgz
tar xvzf imagick-3.4.3.tgz
cd imagick-3.4.3
phpize
./configure
make install
rm -rf /tmp/imagick-3.4.3*
echo extension=imagick.so >> /etc/php/7.2/cli/php.ini
echo extension=imagick.so >> /etc/php/7.2/fpm/php.ini
service php7.2-fpm restart
service nginx restart
@wesort
Copy link
Author

wesort commented Oct 22, 2019

wget https://gist.githubusercontent.com/wesort/6a181fa9d586e65992dcc38d81d6bb8d/raw/ef1b19c9a4ed80a930cf226475c51156002de559/imagick3.4.3-PHP7.2-forge.sh

sudo bash imagick3.4.3-PHP7.2-forge.sh

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