Anburaj A
Anburaj A

Reputation: 1

Issue Running Imagick module (PHP 5.3.5, WAMP server 2.1e)

I have installed Wamp server 2.1e-32bit and ImageMagick-6.8.9-7-Q16-x86-dll in Windows Server 2008 R2-x64. After completed my installation process and run wamp server, i get a error message and Imagick not working

The error msg is:

"PHP Warning:  PHP Startup: imagick: Unable to initialize module
 Module compiled with build ID=API20090626,TS,VC9
 PHP compiled with build ID=API20090626,TS,VC6
 These options need to match in Unknown on line 0"

How to resolve the problem?

Upvotes: 0

Views: 648

Answers (1)

ivan.sim
ivan.sim

Reputation: 9268

Try the 64-bit DLL since you are running on Windows Server 2008 R2-x64 as recommended by the doc.

UPDATE:

If you don't already have the php_imagick.dll extension, you can download it from here. In your case, you will pick the php 5.3 Thread Safe (TS) x86 version. The caveat here is I am unsure if this will work with the latest imagemagick Q16 DLL.

Copy the php_imagick.dll file to your PHP ext folder, and update your php.ini to include extension=php_imagick.dll. Then restart your WAMP server.

Run phpinfo() to ensure the imagick library is loaded properly.

Upvotes: 1

Related Questions