Skip to content

Instantly share code, notes, and snippets.

  • Star 10 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save rostockahoi/1d53a2efb8863d72d5f1acb94ae940d1 to your computer and use it in GitHub Desktop.
Install Imagick 3.4.3 on PHP 7.2 server (Laravel Forge)
#!/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
@aqwxcvb
Copy link

aqwxcvb commented Feb 22, 2019

You can maybe add sudo apt install php7.2-dev, it's necessary for the command "phpize" in your script bash.
Thanks u for helpful !

@whoacowboy
Copy link

Thank you.

@omdesignz
Copy link

Hi there, will the same steps work for php 7.4? By changing the PHP 7.2 reference to PHP 7.4?

@rostockahoi
Copy link
Author

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.

@omdesignz
Copy link

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