Uncategorized – DanDev.com http://www.dandev.com Tidbits about software development Wed, 17 Aug 2016 01:21:41 +0000 en-US hourly 1 Build & Install ImageMagick on PHP 7 http://www.dandev.com/2016/08/build-install-imagemagick-php-7/ http://www.dandev.com/2016/08/build-install-imagemagick-php-7/#respond Tue, 16 Aug 2016 00:55:27 +0000 http://www.dandev.com/?p=497 # Install build dependencies yum install php-devel ImageMagick-devel # Get latest version from https://pecl.php.net/package/imagick cd /tmp wget https://pecl.php.net/get/imagick-3.4.1.tgz tar -zxf imagick-3.4.1.tgz cd imagick-3.4.1 phpize ./configure make install # The extension […]

The post Build & Install ImageMagick on PHP 7 appeared first on DanDev.com.

]]>
# Install build dependencies yum install php-devel ImageMagick-devel # Get latest version from https://pecl.php.net/package/imagick cd /tmp wget https://pecl.php.net/get/imagick-3.4.1.tgz tar -zxf imagick-3.4.1.tgz cd imagick-3.4.1 phpize ./configure make install # The extension file will be placed in the PHP extensions folder; it just needs to be # added to your php.ini or /etc/php.d/ file(verify path): # extension=imagick.so

The post Build & Install ImageMagick on PHP 7 appeared first on DanDev.com.

]]>
http://www.dandev.com/2016/08/build-install-imagemagick-php-7/feed/ 0