PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/zend/lib/php_extensions/mcrypt.so' - dlopen(/usr/local/zend/lib/php_extensions/mcrypt.so, 9): Library not loaded: /usr/lib/libltdl.3.dylib
then all you need to do the fix the problem is create a symlink to the .dylib file as follows:
- Code: Select all
sudo ln -s /usr/local/zend/lib/libltdl.3.dylib /usr/lib/libltdl.3.dylib
Zend includes both the .so and .dylib files, you just need to get OSX to see the .dylib file by creating the symlink.

