Reputation: 11
what opportunities there are to debug PHP as CGI? I find with Google or very little help here.
I receive following error (log) FastCGI: incomplete headers (0 bytes) received from server
But thats too less. I need more information.
Upvotes: 1
Views: 1681
Reputation: 116217
Easiest way to debug PHP is using xdebug
extension on server. Many debuggers support xdebug
out of box. Eclipse can be configured to use xdebug
to debug PHP scripts, but I personally prefer to use Komodo IDE (commercial, but works great).
Upvotes: 1