Thanks, that helped a lot. I discovered two problems...
1. I'd changed configure, but make install wasn't replacing the old httpd.conf file. I deleted it, ran make install again and this time noticed a very different httpd.conf file.
2. I went to the LoadModules area and added:
LoadModule php5_module "modules/libphp5.so"
and then I went into the mod_mime area and added the two AddType entries.
Restarted the server and now it's working, handling PHP5.
Thanks, Ed
On Nov 2, 2006, at 10:46 AM, Bill Angus wrote: Here's what I do (Windows environment)... works fine for me. LoadModule php5_module "C:\php\php5apache2_2.dll" PHPIniDir "C:/php" <IfModule mod_mime.c> AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps </IfModule>
----- Original Message ----- Sent: Thursday, November 02, 2006 10:36 AM Subject: [users@httpd] Apache 2.2.3 and PHP 5.1.6
I've been Googling and searching the mailing list archive with no luck, so I thought I'd try asking for help...
I'm getting an error of: Invalid command 'AddType' when trying to start Apache.
The PHP 5 installation instructions say to modify httpd.conf and add
LoadModule php5_module libexec/libphp5.so AddModule mod_php5.c AddType application/x-httpd-php .php .phtml
I did that, but then Apache said AddModule was an invalid command. I commented it out and now AddType is causing problems.
Also, I read that the AddModule command has been removed in Apache 2.2.3, but that leaves me wondering... how do I configure Apache 2.2.3 to use PHP?
I run httpd -l and it tells me that the mod_so.c is one of the compiled in modules.
Thanks, Ed
--------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx
|