Google App Engine Launcher - CGI / FastCGI has stopped working

849 Views Asked by At

Using the Google Identity Toolkit SDK for Php with Google App Engine Launcher causes this error to appear. 'CGI / FastCGI has stopped working'.

As soon as you implement:

Gitkit_Client::createFromFile('/gitkit-server-config.json');

The crash will occur.

This is using the 1.9.30 version of Google App Engine Launcher that was recently released.

2

There are 2 best solutions below

2
On BEST ANSWER

If you don't already have one, create a php.ini in the root of your project and add this line to enable the full version of curl.

extension = "php_curl.dll"

This solution has worked to resolve the error for me.

0
On

I had the same problem. There's also an open issue. Waiting for a fix, I "solved" downgrading the Google App Engine SDK for PHP to version 1.9.23. Tried also every version from 1.9.24 to 1.9.31, but none seems to work.