ImageMagick problem

norhost

New member
Joined
Feb 4, 2008
Messages
2
I have been checking around, but i cant find a solution.
When installing ImageMagick I get this error when doing a version check.

[root@domain bin]# convert -version
convert: error while loading shared libraries: libMagickCore.so.1: cannot open shared object file: No such file or directory

Any one know whats wrong here?

Thanks

Ron
 
Hi,
Set your LD_LIBRARY_PATH to include the /usr/local/lib directory
# export LD_LIBRARY_PATH=/usr/local/lib
Bye
 
Type ldconfig

I had this same error. The solution for me was to type this at the command prompt after compiling and installing:
Code:
ldconfig
I'm still something of a beginner, but as I understand it this "registers" any new libraries you've installed.

Why this isn't included in the installation instructions is beyond me.
 
tried that and still get errors in gallery. Although running /usr/local/bin/convert returns imagmagick corectly
 
I had this same error. The solution for me was to type this at the command prompt after compiling and installing:
Code:
ldconfig
I'm still something of a beginner, but as I understand it this "registers" any new libraries you've installed.

Why this isn't included in the installation instructions is beyond me.

Thank you! This fixed my problem... Still not working with PHP but now looking to see if I have to recompile PHP for use with ImageMagick.

Regards,
Phil
 
Back
Top