Forked from pascalbaljet/imagick-3.4.0-PHP7-forge.sh
Created
January 30, 2016 07:59
-
-
Save kbirmhrjn/baae516ad7d878af7701 to your computer and use it in GitHub Desktop.
Install Imagick 3.4.0RC2 on PHP 7.0 server (Laravel Forge)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 http://pecl.php.net/get/imagick-3.4.0RC2.tgz | |
tar xvzf imagick-3.4.0RC2.tgz | |
cd imagick-3.4.0RC2 | |
phpize | |
./configure | |
make install | |
rm -rf /tmp/imagick-3.4.0RC2* | |
echo extension=imagick.so >> /etc/php/7.0/cli/php.ini | |
service php7.0-fpm restart | |
service nginx restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment