windows中wamp環境composer使用中openssl問題解決
今天在windows下學習lavaral,使用composer update命令報如下錯誤:
[Composer\Exception\NoSslException]
The openssl extension is required for SSL/TLS protection but is not available. If you can not enable the openssl ex
tension, you can disable this error, at your own risk, by setting the ‘disable-tls‘ option to true.
大體意思就是composer要求使用openssl連接,百度相關問題,解決思路分為兩種:
一、禁用openssl,結果是治標不治本放棄
二、開啟php的openssl擴展,下載ca證書
具體操作如下:
1、開啟php擴展,左鍵wamp-php-php擴展-php_openssl前面打勾。
2、在D:\wamp\wamp\bin\php\php5.4.12(看個人安裝路徑確定)下找到php.ini文件,用sublime打開。
查找 extension=php_openssl.dll
,刪除extension=php_openssl.dll
前面的分號,取消註釋,從而啟用OpenSSL插件。
註意:因為SSL連接需要認證,所以繼續下面的步驟之前,需要準備好CA證書(建議把證書保存到D:\wamp\wamp\bin\php\php5.4.12\verify
目錄中),可以從https://curl.haxx.se/docs/caextract.html處下載。(如果直接打開文件的話,另存為修改文件名即可)
3、如果php.ini文件中能夠找到
;openssl.cafile=
和上面一樣,去掉分號註釋,設置CA證書為D:\wamp\wamp\bin\php\php5.4.12\verify,即
openssl.cafile= "D:\wamp\wamp\bin\php\php5.4.12\verify\cacert.pem"如果無法找到直接添加
openssl.cafile=
"D:\wamp\wamp\bin\php\php5.4.12\verify\cacert.pem"
完成上面操作再次在cmd環境中運行composer update 問題解決,參考文章
http://blog.csdn.net/fjnjxr/article/details/54968072
我在安裝的過程中,即便是滿足了以上要求,還出現了一個類似於下面的錯誤,最終排查,是php_fileinfo未開啟導致的,在php.ini中將這個配置項的註釋去掉即可
To enable extensions, verify that they are enabled in those .ini files:
- X:\wamp\php\php.ini
You can also run `php --ini` inside terminal to see which files are used by PH
P in CLI mode.
來自:http://blog.csdn.net/u011120720/article/details/51983311
windows中wamp環境composer使用中openssl問題解決