Forked from danielstgt/imagick3.4.4-PHP7.4-forge.sh
Last active
January 19, 2023 07:10
-
-
Save motsmanish/8708c0df7c3d25c41ce8639397b7cbf0 to your computer and use it in GitHub Desktop.
Install imagick 3.7.0 on PHP 7.4 server
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.7.0.tgz | |
tar xvzf imagick-3.7.0.tgz | |
cd imagick-3.7.0 | |
phpize | |
./configure | |
make install | |
rm -rf /tmp/imagick-3.7.0* | |
echo extension=imagick.so >> /etc/php/7.4/cli/php.ini | |
echo extension=imagick.so >> /etc/php/7.4/fpm/php.ini | |
service php7.4-fpm restart | |
service nginx restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment