Valix85
Valix85

Reputation: 783

install imagemagick and PECL/imagick on XAMPP on windows

i'm trying to install imagemagick under windows with XAMPP and PHP 5.6.3

i have download and installed imagemagick ( ImageMagick-6.9.1-0-Q16-x64-dll.exe ) yet. In command window (cmd) i try to use convert ecc... and work correctly (then PATH is correct).

Next i download DLL from PECL/package/imagick in version 3.2.0b2 x64 TS for php 5.6 ( http://windows.php.net/downloads/pecl/releases/imagick/3.2.0b2/php_imagick-3.2.0b2-5.6-ts-vc11-x64.zip )

i have set php.ini for load extension (retrive in before zip package and copyi it in c:\xampp\php\ext\ folder), i have copy all CORE_RL_*.DLL (retrive in before zip package) in c:\xampp\apache\bin\

restart PC and resstat apache/php server. When apache/php start i have 2 warning msgbox (i think one for each PID(s) port 80 and port 443 ) than explain: "PHP Startup:" and i can press only ok.

in Xampp control panel Apache module and Mysql module are green but if i visited phpinfo.php i don't see imagemagick or imagick extension!

what's wrong??? what can i do it?

help me please

Upvotes: 0

Views: 3655

Answers (1)

Praveen Dabral
Praveen Dabral

Reputation: 2509

Include the extension in php.ini file if not done.

extension=php_imagick.dll

And restart apache.

Upvotes: 0

Related Questions