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
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
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.