Rainer Honsch: PHP4 auf Linux mit Apache installieren

Beitrag lesen

PHP sollte (muss nicht) als Module des apache laufen, das bedeutet das du apache mit php neu komplieren musst.

mysql brauchst du nicht mehr neu installiern.

Aha, .. kann ich das einfach im Apache Verzeichnis machen ?
alos, .. momentan liegt der funktionsfähige Apache in /usr/local/apache

nun habe ich folgendes gemacht:
PHP4 von php.de gezogen, .. entpackt und indas Verzeichnis gewechselt:
dann :
./configure --with-apache=/usr/local/apache
make
make install

dann im fertig installierten Apache-Verzeichnis:
./configure --prefix=/usr/local/apache_1.3.12 --activate-module=src/modules/php4/libphp4.a --enable-module=php4
make
make install

Dann sollte ich angeblich in miener httpd.conf einen Eintrag alà LoadModule finden, .. finde ich aber nciht, .. dann habe ich diesen Eintrag von hand hinzugefügt, ..dann kommt das:
Syntax error on line 25 of /usr/local/apache/conf/httpd.conf:
Invalid command 'LoadModule', perhaps mis-spelled or defined by a module not included in the server configuration
../bin/httpsdctl start: httpd could not be started

Rainer