当前位置: 首页 > 工具软件 > WNMP+ > 使用案例 >

composer问题之wnmp安装laravel报错

毕瀚
2023-12-01

The openssl extension is required for SSL/TLS protection but is not available. If you can not enable


通过composer下载laravel的时候报的这个错误


先查看php.ini文件里开启ssl扩展没有

extension=php_openssl.dll  前面的注释打开


因为SSL连接需要认证,所以继续下面的步骤之前,需要准备好CA证书(建议把证书保存到C:\php-5.6.24\verify目录中),可以从https://curl.haxx.se/docs/caextract.html处下载。


接下来,定位到

;openssl.cafile= 

和上面一样,删去分号,取消注释,设置CA证书为openssl.cafile= C:\php-5.6.24\verify\cacert.pem




 类似资料: