Back to Recipes
slashequip
2 recipes shared
Install imagick ext for PHP 7.1
This script will install imagick 3.4.3 and add the extension to your php.ini file, for servers running PHP 7.1
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
7 years ago
slashequip
Install imagick ext for PHP 7.2
This script will install imagick 3.4.3 and add the extension to your php.ini file, for servers running PHP 7.2
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
7 years ago
slashequip