Ich versuche in meine apche-datei httpd php einzubinden mit den Zeilen:
LoadModule php4_module c:/programme/php/sapi/php4apache.dll
Moechtest Du denn wirklich php als _Modul_ so wie etwa _modPerl in den Apache einbinden? Dann kann ich Dir leider auch nicht helfen. Sollte es Dir aber reichen, via Apache den php-Interpreter aufzurufen, dann sollte Dein httpd.conf in etwa so aussehen:
<-------------------snip--------------------------------------->
# And for PHP 4.x, use:
#
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
AddType application/x-tar .tgz
#
# AddHandler allows you to map certain file extensions to "handlers",
# actions unrelated to filetype. These can be either built into the server
# or added with the Action command (see below)
#
# If you want to use server side includes, or CGI outside
# ScriptAliased directories, uncomment the following lines.
#
# To use CGI scripts:
#
AddHandler cgi-script .cgi
AddHandler cgi-script .pl
#
# To use server-parsed HTML files
#
AddType text/html .shtml
AddHandler server-parsed .shtml
#php4
Action application/x-httpd-php "/cgi-bin/php4.exe"
<-----------------------------------snap--------------------->
Funzt bei mir auf win95/98.
Gruss Georg