Mailinglisten-Archive |
Am Donnerstag, 19. April 2001 00:08 schrieben Sie: > Hallo Michael, > ich habe mal in meinem Apache Startscript nachgesehen. > > > > > Da könnte aber auch das Problem sein: > > > > Überprüfe mal im Startscript vom Apache (/sbin/init.d ist nun > > /etc/init.d) mit welchen > > > > > Optionen der aufgerufen wird. > > In meiner > /sbin/init.d ist nun /etc/init.d > steht folgendes: > > # > # check for Midgard and PHP3 support, which are mutually exclusive > # > if [ -e /usr/lib/apache/libphp3-midgard.so ]; then > test ! "$HTTPD_SEC_MOD_MIDGARD" == "no" && MODULES="-D MIDGARD > $MODULES" && echo -n " > Midgard" > else > if ! test "$HTTPD_SEC_MOD_PHP" == "no" ; then > test -e /usr/lib/apache/libphp3.so \ > && MODULES="-D PHP $MODULES" && echo -n " PHP3" > fi > fi > > # > # check for PHP4 support > # > if ! test "$HTTPD_SEC_MOD_PHP" == "no" ; then > test -e /usr/lib/apache/libphp4.so || \ > test $(/usr/sbin/httpd -l | grep "mod_php4.c") = "mod_php4.c" 2> > /dev/null \ > && MODULES="-D PHP4 $MODULES" && echo -n " PHP4" > fi > > > > # > # main part > # > case "$1" in > start) > echo -n "Starting httpd [" > check_modules yes ; > echo -n " ]" > if $HTTPD_BIN $INET6 -t -f /etc/httpd/httpd.conf $MODULES > > /var/log/httpd/rcapache.log 2> > &1 ; then > startproc -t $HTTPD_START_TIMEOUT $HTTPD_BIN $INET6 -f > /etc/httpd/httpd.conf $MODU > LES || return=$rc_failed > else > if [ $link = $base ] ; then > echo -e -n "\n\n" > cat /var/log/httpd/rcapache.log > else > echo -e -n "\nsee /var/log/httpd/rcapache.log for > details\n"; > fi > return=$rc_failed ; > fi > > if test -e /var/log/ssl_scache.dir ; then > chown wwwrun /var/log/ssl_scache.dir ; > fi > if test -e /var/log/ssl_scache.pag ; then > chown wwwrun /var/log/ssl_scache.pag > fi > echo -e "$return" > ;; > > > Ist das soweit korreckt? > Oder muß ich da noch irgend etwas ändern? > > Herzlichen Dank und bis bald > Manfred Gnädig Hallo Manfred nachdem Du alle php3 Eintraege in der httpd.conf mit # versehen hast, brauchst Du deine Datei nicht in .php4 umzubenennen. Es muß in der httpd.conf lediglich bei AddType (ca. Zeile 1120) And for php4.x use: ...... AddType application/x-httpd-php .php3 ...... stehen, damit dein php4-Modul dateien mit der Endung .php3 auch versteht. That's all. Das apache startscript ist ok. -- Mario Guenterberg
php::bar PHP Wiki - Listenarchive