HOWTO: Install php with imagick support in CentOS 6
Just copy and paste:
$ yum install make
$ yum install gcc
$ yum install php php-fpm php-devel php-pear
$ yum install ImageMagick ImageMagick-devel
$ pecl install imagick
$ echo "extension=imagick.so" > /etc/php.d/imagick.ini
Now, restart the web server.
That's it! Hope it helps you.
May 20nd
Filed Under: ASP, AXE, IIS, Python
In order to save me time in the future trying to figure out how to install ActiveX Scripting Support in ActiveState Python, here's a little reminder.
- Download Microsoft Visual C++ 2008 SP1 Redistributable Package http://www.microsoft.com/en-us/download/details.aspx?id=5582.
- Download ActiveState Python http://www.activestate.com/activepython.
- Download Python for Windows Extensions http://sourceforge.net/projects/pywin32/files/pywin32/Build%20218/.
- Install everything in the same order.
- Execute
C:Python27Libsite-packageswin32comextaxscriptclientpyscript.py
That's it! Enjoy!