Amazon S3 on PHP GAE not working with curl extension

后端 未结 2 663
我寻月下人不归
我寻月下人不归 2021-01-06 05:49

Could anyone help me figure out how to get S3 working on my php app engine (runtime: php55)?

I saw somewhere that you can use it without CURL and found t

相关标签:
2条回答
  • 2021-01-06 06:30

    curl requires sockets which are only available to bill enabled apps (https://cloud.google.com/appengine/docs/php/sockets/). You may wish to also consider "curl lite": https://cloud.google.com/appengine/docs/php/config/php_ini#GAE_directives

    0 讨论(0)
  • 2021-01-06 06:40

    Even though GAE supports "cURL" - it is only a wrapper, so some functionality has not been implemented yet - particularly the whole multi_curl_* thing.

    Have not found a way to deactivate it - but from SDK v3 cURL is not anymore required - so you might give that a try.

    0 讨论(0)
提交回复
热议问题