Skip to content

Instantly share code, notes, and snippets.

  • Star 32 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save danielstgt/8ca263e924845d308cf862a3edc718eb to your computer and use it in GitHub Desktop.
Install Imagick 3.4.3 on PHP 7.3 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.3/cli/php.ini
echo extension=imagick.so >> /etc/php/7.3/fpm/php.ini
service php7.3-fpm restart
service nginx restart
@danielstgt
Copy link
Author

danielstgt commented Dec 16, 2018

wget https://gist.githubusercontent.com/danielstgt/8ca263e924845d308cf862a3edc718eb/raw/70d64205318432ed318f720b8152cfce5658776d/imagick3.4.3-PHP7.3-forge.sh
sudo bash imagick3.4.3-PHP7.3-forge.sh

Updated version for PHP 7.4 available

https://gist.github.com/danielstgt/dc1068e577bbd8b6e9a6050a6db1f9c3

@NoxxieNl
Copy link

NoxxieNl commented Sep 7, 2019

Thanks for this :), worked like a charm!

@hiteshkoli
Copy link

Thanks for this. Works without any issues.

@reinvanoyen
Copy link

Thanks! Works like a charm!

@meduzen
Copy link

meduzen commented Feb 17, 2020

Hi @danielstgt, do you think the same process work for PHP 7.4?

@omdesignz
Copy link

Hi @meduzen, did you try it on php 7.4?

@meduzen
Copy link

meduzen commented Feb 23, 2020

@omdesignz Yes, but I couldn’t make this work. So I ended up doing something else that worked, but unfortunately I didn’t take any note. -_-

@omdesignz
Copy link

@omdesignz Yes, but I couldn’t make this work. So I ended up doing something else that worked, but unfortunately I didn’t take any note. -_-

Just forked it and it worked on PHP 7.4. If you're interested you can find it here: https://gist.github.com/omdesignz/39fd1e87913a62c68ba2c1dd460f9d08

@meduzen
Copy link

meduzen commented Feb 25, 2020

Oh great, thanks a lot!

@danielstgt
Copy link
Author

I've created an updated version for PHP 7.4 here:

https://gist.github.com/danielstgt/dc1068e577bbd8b6e9a6050a6db1f9c3

@mohitpanjwani
Copy link

Thanks man 🚀

@alexagui
Copy link

Thanks! It'd be nice if Forge included ImageMagick by default.

@danielstgt
Copy link
Author

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