Php

帶有 SSL 的 AWS PHP 捲曲

  • August 11, 2015

我正在嘗試在我的 Ubuntu LAMP 伺服器上安裝 Amazon Web Services PHP SDK。每當我執行兼容檢查所有內容時,但 cURL 恢復正常。我遇到的問題是它報告我沒有使用 SSL 的 cURL。我解除安裝了 curl 然後安裝了 curl-ssl 無濟於事。

也許您忘記安裝一些軟體包libcurl4-openssl-dev

sudo apt-get remove --purge php5-curl && \
sudo apt-get install libcurl4-openssl-dev curl-ssl php5-curl

然後重啟伺服器:

sudo apachectl -k restart

這個問題應該在 serverfault.com/ubuntu 上

我的 EC-2 面臨同樣的問題,面臨上述答案的問題。然後我找到了一個命令

sudo apt-get install curl libcurl3 libcurl3-dev php5-curl

這可以幫助我解決問題。

更多參考

https://askubuntu.com/questions/530323/how-to-make-curl-and-php-available-when-installed-from-xampp?newreg=720483ecd77b4d0aaa09da29c79de8a3

引用自:https://serverfault.com/questions/438340