MagickWand installation?

emo

New member
Joined
Sep 6, 2008
Messages
2
Hello,

today I was trying to install MagickWand into PHP and I'm not sure how to follow those howto-steps at http://www.imagemagick.org/MagickWandForPHP/

I've downloaded the package, extracted it and put it in my php extension directory, but the files downloaded aren't really .so files so I think I've got to do something else.

On imagemagick.org it says I have to "phpize" them and then run ./buildconf in my "PHP source directory". But I can't find that file.

Does anyone have experience in this?

Thanks!
 
Wasn't difficult at all :) Figured it out myself and hopefully I've done it the right way.

Run:
Code:
phpize
./configure
make

Then take magickwand.so out of modules directory and move it to your php extension directory.

After that is done add:
Code:
[magickwand]
extension="magickwand.so"
to your php.ini and restart apache :)
 
Back
Top