我已经完成了15.2,我按照这个步骤将sparkpost和laravel连接起来,我将我的服务和mail.php恢复到了最初的配置:
https://medium.com/@petehouston/send-mail-with-sparkpost-in-laravel-b5e30a941ebf#.s2hebpwb6但我知道这个错误:
cURL错误60: SSL证书问题:无法获得本地颁发者证书(请参阅http://curl.haxx.se/libcurl/c/libcurl-errors.html)
发布于 2017-01-17 03:53:01
这是本地cacert的一个问题,通常发生在使用xampp、wamp或类似的相关软件时,因为在发出默认的curl请求时,没有证书。
我的建议是从这里下载一个仙人掌:http://curl.haxx.se/ca/cacert.pem
将证书复制到C:\Xampp\certs
使用以下内容更新PHP.ini文件:
curl.cainfo="C:/xampp/certs/ca-bundle.crt"
openssl.cafile="C:/xampp/certs/ca-bundle.crt"重新启动您的web服务器,您应该可以开始了。
https://stackoverflow.com/questions/41688609
复制相似问题