Maksim Luzik
Maksim Luzik

Reputation: 6713

Is there any way to debug PHP application running in Google App Engine?

Is there any way to debug PHP application running in Google App Engine, similar that you can do in your localhost? For example with PhpStorm like this (this is localhost example): https://confluence.jetbrains.com/display/PhpStorm/Getting+Started+with+PhpStorm+as+Google+App+Engine+PHP+IDE in section 6.

I am running with a issue using PDO Mysql adapter in ZF2 application running on my Google App Engine and I do not get any errors, except that request timeouts. On my local Google App engine server PDO Mysql adapter works fine.

Upvotes: 0

Views: 223

Answers (1)

Andrew J
Andrew J

Reputation: 2001

App Engine doesn't currently support any type of remote debugging for PHP applications, although currently it is possible to perform live production debugging of Java applications on Managed VMs.

https://cloud.google.com/tools/cloud-debugger/

Upvotes: 1

Related Questions