Выполнение команды развертывания:
appcfg.py update ./appengine-project
Я начал эту ошибку:
Error 400: --- begin server output --- PHP 5.4 applications are prevented from being deployed to Google App Engine from any version of the SDK, including older ones. If you need to continue to deploy PHP 5.4 applications for compatibility reasons, you can request that your application be whitelisted for PHP 5.4 deployment by visiting http://goo.gl/qjKEuk. --- end server output ---
Я запускаю PHP 5.5 локально. И я развернул свое приложение всего пару дней назад без проблем.
Эта запись в Google Groups здесь меня разобрала.
В моем файле app.yaml
мне просто нужно было изменить эту строку:
runtime: php
чтобы:
runtime: php55
После этого развертывание завершилось успешно.