Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save clizaola/78c01163a4eeae00a1e734b3414a85fe to your computer and use it in GitHub Desktop.

Select an option

Save clizaola/78c01163a4eeae00a1e734b3414a85fe 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.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.1/cli/php.ini
echo extension=imagick.so >> /etc/php/7.1/fpm/php.ini
service php7.1-fpm restart
service nginx restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment