Forked from rostockahoi/imagick3.4.3-PHP7.2-forge.sh
Last active
May 30, 2023 22:43
-
-
Save danielstgt/8ca263e924845d308cf862a3edc718eb to your computer and use it in GitHub Desktop.
Install Imagick 3.4.3 on PHP 7.3 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.3/cli/php.ini | |
echo extension=imagick.so >> /etc/php/7.3/fpm/php.ini | |
service php7.3-fpm restart | |
service nginx restart |
I've created an updated version for PHP 7.4 here:
https://gist.github.com/danielstgt/dc1068e577bbd8b6e9a6050a6db1f9c3
Thanks man 🚀
Thanks! It'd be nice if Forge included ImageMagick by default.
Thanks! It'd be nice if Forge included ImageMagick by default.
New servers provisioned now include Imagick — See: https://twitter.com/themsaid/status/1326121298918068224
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh great, thanks a lot!