On Sat, Sep 20, 2014 at 11:26 PM, Kseniya Andryushyna < [email protected]> wrote:
> I'm pretty new to programing all together and PHP in particular, so I > apologize if my question sound stupid. > > I want to write an app that will use Maps Engine API. I've installed Apps > Engine PHP SDK, gone through all registrations and so on. > The 1st example > <https://developers.google.com/maps-engine/documentation/hello-world#php> > shown > in Map Engine page is not running in PHP Runtime. I receive an error: Call > to undefined function curl_init(). From bits of information that I found > and understood it looks like cURL library is not installed. > Could you please help me to understand if my assumption is true and if it > is - advise how to install the library? > I would suggest using pUrl: https://github.com/azayarni/purl It's basically a reimplementation of curl in pure PHP. It doesn't support all of curl's features, but it'll get you up and running quickly and you can fix any problems down the road. In the longer run, you should star the following issue: https://code.google.com/p/googleappengine/issues/detail?id=9343 ( PHP - cUrl library) for curl support on App Engine. ----------------- -Vinny P Technology & Media Consultant Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
