Re: [PHP-DEV] Bug #601: phpinfo() returns an empty page From: Rasmus Lerdorf (rasmus <email protected>)
Date: 07/30/98

> phpinfo() returns an empty page to the web browser, according to Netscape, and IE4 gives a:
> "The server returned an invalid or unrecognized response" error. There is no evidence of a
> crash in the log files, and all other php3 functions I've tried seem to work just fine. We're
> running PHP 3.0.2a as an Apache 1.2.6 module, with no php3.ini file.

Any chance you could run your httpd under gdb and set a breakpoint on
_php3_info ?

eg.

 gdb httpd
> b _php3_info
> run -X -f /path/httpd.conf

then hit the phpinfo() page

 Then step through it and see where it gets confused.

-Rasmus