The response body in this case is the data sent when the client connects
to the server to fetch the logging data.
Based on this output you are testing the following URL:
http://localhost/firephp/
The client reads the headers returned and makes a second call to
the "
Server URL":
http://localhost/firephp/
The client sends some POST parameters with the second request which
FirePHP intercepts, locates the logging data for the last request and
sends this to the client.
The output shows that the response body does contain logging data which
is what is expected.
So I am wondering if it is significant that there are extra newlines at
the top of the response body. The client should be trimming these before
parsing the response.
I just tested this (extra newlines) and it does seem to be the issue.
I'll patch this for the next release.
In the meantime make sure you are including FirePHP as the very first
thing in all your pages and that there are no spaces or newlines
generated prior.
Thanks for reporting this bug!
Christoph