Is it because you are using the AddModule directive. I think that is only used in Apache 1.3.x series.
This is all I have in my httpd.conf for loading the php module. ##LoadModule speling_module modules/mod_speling.so ##LoadModule userdir_module modules/mod_userdir.so LoadModule alias_module modules/mod_alias.so ##LoadModule rewrite_module modules/mod_rewrite.so LoadModule php5_module modules/libphp5.so Keith In theory, theory and practice are the same; In practice they are not. On Sun, 12 Mar 2006, Matt G. wrote: > To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> From: Matt G. > <[EMAIL PROTECTED]> Subject: [SPAM] Re: [PHP-INSTALL] > php returning completely empty documents on > new apache install > > Hi Keith, > > Thanks for the suggestions. I had already tried the > phpinfo() call and it results in the same thing as my > hello world, just a 0 byte document returned from the > webserver. The apache install is essentially working > correctly, it returns .html docs just fine. Also, I > checked those php.ini keywords and they are both set to > on. (in fact I'm using the exact sample php.ini that came > with the source distribution.) > > I'm completely stumped... > > On 11/03/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > > > Try calling the following as a php file: > > > > <?php > > > > phpinfo(); > > > > ?> > > > > It's only 3 lines, but that returns alot of information for > > debugging your php installation. > > > > Do you have the following directives set in php.ini? > > > > ; Enable the PHP scripting language engine under Apache. > > engine = ON > > > > ; whether PHP may add its signature to the Web server header > > expose_php = YES > > > > Can you return a plain html document with Apache? > > > > If not, is your apache DocRoot setup correctly? > > > > Keith > > > > > > In theory, theory and practice are the same; > > In practice they are not. > > > > On Sat, 11 Mar 2006, Matt G. wrote: > > > > > To: php-install@lists.php.net From: Matt G. > > > <[EMAIL PROTECTED]> Subject: [PHP-INSTALL] php > > > returning completely empty documents on new apache > > > install > > > > > > I just built the latest apache 2.0 and php5 (shared > > > apache module) on a linux 2.6.5 box. After doing all > > > of the setup from the INSTALL file, > > I'm > > > unable to get a php hello world to work! (Well, I get it to work with > > the > > > CLI, but not through my web browser) The apache > > > server just returns a 0 byte document. No errors come > > > out in the apache logs and it says the document was > > > sent with a http 200 status. It is as if the php > > interpreter > > > is not getting called. > > > > > > When the apache server starts up, it logs that php is in fact > > configured: > > > > > > [Sat Mar 11 16:06:51 2006] [notice] Apache/1.3.34 (Unix) PHP/5.1.2 > > > configured -- resuming normal operations > > > > > > I believe I have the correct lines in my httpd.conf: > > > LoadModule php5_module libexec/libphp5.so > > > AddModule mod_php5.c > > > DirectoryIndex index.html index.php > > > AddType application/x-httpd-php .php .phtml > > > AddType application/x-httpd-php-source .phps > > > > > > > > > Does anybody have any suggestions for how I can dig into this further? > > >