Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save voicecode-bv/a30f97a5ada890fb1fa74ac64b2c335e to your computer and use it in GitHub Desktop.
Save voicecode-bv/a30f97a5ada890fb1fa74ac64b2c335e to your computer and use it in GitHub Desktop.
Install Imagick 3.4.4 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.4.tgz
tar xvzf imagick-3.4.4.tgz
cd imagick-3.4.4
phpize
./configure
make install
rm -rf /tmp/imagick-3.4.4*
echo extension=imagick.so >> /etc/php/7.3/cli/php.ini
echo extension=imagick.so >> /etc/php/7.3/fpm/php.ini
service php7.3-fpm restart
service nginx restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment