Home > Article > Backend Development > How to Fix \"stream_socket_enable_crypto(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed\" in L
Laravel certificate verification error while sending TLS email
You are encountering certificate verification error while sending TLS email using Laravel, error message For "stream_socket_enable_crypto(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed".
To resolve this error, check whether your server automatically manages the trusted certificate store. If not, follow these steps:
curl.cainfo = D:/Servers/php/sslfiles/cacert.pem openssl.cafile = D:/Servers/php/sslfiles/cacert.pem
The above is the detailed content of How to Fix \"stream_socket_enable_crypto(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed\" in L. For more information, please follow other related articles on the PHP Chinese website!