• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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