I am using a php5.6 on my Mac OS, and php-fpm throws an issue:
dyld: Library not loaded: /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib
Referenced from: /usr/local/opt/[email protected]/sbin/php-fpm
Reason: image not found
Now i have latest OpenSSL version installed. And cannot downgrade it.
4
Answers
To solve this problem you need:
$ make clean
,$ ./Configure darwin64-x86_64-cc -shared
,$ make
,$ make install
/usr/local/Cellar/openssl/lib/
And now it works (For me)!
I have a good news. eXolnet published a patch for [email protected] witch fixes openssl bug. All instructions here
The perfect solution in macOS Catalina with PHP 7.2, this line:
Fuente:
https://github.com/kelaberetiv/TagUI/issues/86#issue-303370944
For me following worked (macOS Catalina with PHP 7.1)