Yah, i pretty much did that already, i put that information in my original question, however it doesn't work.
Main Topics
Browse All TopicsI have snow leopard and I am running the latest version of MAMP 1.8.2
I am trying to install Imagemagick, I had imagemagick installed previously on leopard and it woked fine.
I used the following instructions to install imagemagick, and everything worked fine, except for the part that it says
[10-Sep-2009 20:48:38] PHP Warning: PHP Startup: Unable to load dynamic library '/Applications/MAMP/bin/ph
I'm trying to figure out this issue so that I can use imagemagic.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Did anyone figure this out. I have searched the internet upside down and installed imagemagick from pear, macports and source. I have tried changing everything there is to change in envars, php.ini you name it and still cannot get it to load.
I've slept on it and gone back and checked spelling, capitalization, directories. I can think of nothing more to check. Imagemagick is installed fine and defintely works from terminal. Imagick however just doesn't load no matter where i put the imagick.so file or how i point to it or what entries i put in my php extensions.
Any help appreciated. This 'experts exhange is a last effort'
Business Accounts
Answer for Membership
by: joobzPosted on 2009-09-14 at 02:42:09ID: 25323906
Azure, the process you followed above compiles and installs PHP.
-debug-non -zts-<inser t corrent directory>
After doing this, you then need to
1. Copy the ImageMagick module to your PHP extensions directory
2. Update php.ini to point to the newly created ImageMagick module within your PHP extensions directory
To determine where your ImageMagick module is, the "make install" command you execute should produce an output that identifies where it's being placed.
Alternatively from within the directory you run "make", do..
> cd modules
> sudo cp imagick.so /usr/lib/php/extensions/no
The above will copy the module to your PHP extensions folder.
Once in this folder, then update your /etc/php.ini file to include
> extension=imagick.so
This will search your php extensions folder for the imagick.so module (ImageMagick) and load. You'll need to restart apache for this to load.