Список шагов для установки связки Apache+PHP+Interbase

  adduser -d /opt/interbase -s /sbin/nologin ibase
  rpm -U FirebirdCS-1.0.0.796-0.i386.rpm
  mcedit /etc/xinetd.d/firebird
  user = root  -> user = ibase

  tar zxvf apache_1.3.27.tar.gz
  cd apache_1.3.27
  ./configure
  cd ..

  tar zxvf php-4.2.3.tar.gz
  cd php-4.2.3

  ./configure --with-interbase=/opt/interbase --with-apache=../apache_1.3.27 --enable-track-vars --without-mysql
  make
  make install

  cd ../apache_1.3.27
  ./configure --prefix=/opt/apache --activate-module=src/modules/php4/libphp4.a
  make
  make install

  cd ../php-4.2.3
  cp php.ini-dist /usr/local/lib/php.ini


  mcedit /opt/apache/conf/httpd.conf
  AddType application/x-httpd-php .php

  mcedit /usr/local/lib/php.ini

  /etc/rc.d/init.d/httpd stop
  cp /usr/local/apache/bin/apachectl /etc/rc.d/init.d/httpd
  /etc/rc.d/init.d/httpd start

  lynx localhost

  If you can see this ....