Forked from rostockahoi/imagick3.4.3-PHP7.2-forge.sh
Last active
September 15, 2019 20:49
-
-
Save lamalamaMark/b180e27603f91c3988a0b64816f8addd to your computer and use it in GitHub Desktop.
Install Imagick 3.4.4 on PHP 7.3 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 https://pecl.php.net/get/imagick-3.4.4.tgz | |
| tar xvzf imagick-3.4.4.tgz | |
| cd imagick-3.4.4 | |
| phpize | |
| ./configure | |
| make install | |
| rm -rf /tmp/imagick-3.4.4* | |
| 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.