Forked from jacobmllr95/imagick3.4.3-PHP7.1-forge.sh
Last active
February 23, 2020 14:19
Star
You must be signed in to star a gist
Install Imagick 3.4.3 on PHP 7.2 server (Laravel Forge)
This file contains 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 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 |
Yes this should work. Additionally you would want to check the imagick version since the gist is some kind of old. I‘ll test this next week.
Thanks for the reply. I'll spin up a forge server and test it out as soon as possible.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there, will the same steps work for php 7.4? By changing the PHP 7.2 reference to PHP 7.4?