• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Unable to load dynamic library 'mcrypt.so' - Shared object "libltdl.so.4" not found

Red Paint

Basic Pleskian
Hi Folks,

# php -v
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/lib/php/mcrypt.so' - Shared object "libltdl.so.4" not found, required by "mcrypt.so" in Unknown on line 0

Running FreeBSD.

Any ideas?
 
Seems you have there following files:

/usr/local/lib/libltdl.so.7
/usr/local/lib/libltdl.so

So, make a symlink from libltdl.so.4 –> libltdl.so

libltdl.so is a link to libltdl.so.7

ln -s /usr/local/lib/libltdl.so /usr/local/lib/libltdl.so.4

It should help.
 
Back
Top