2002/4/23
バージョン PHP 4.2.0
Apache 2.0.35
OS Red Hat Linux 7.2
公式サイト http://www.php.net/

PHP 4.1.2はApache 2.0.35に対応していません。今回はApache 2.0.35にインストールしたいので、PHP 4.2.0をインストールします。

インストール

$ tar xvfz php-4.2.0RC4.tar.gz

$ cd php-4.2.0RC4

DSOでインストール、日本語とPostgreSQLを有効にしています。Apache 2.0では--with-apxsの代わりに--with-apxs2を指定する必要があります。

$ ./configure --with-apxs2 \
--with-pgsql \
--with-gd \
--enable-mbstring \
--enable-mbstr-enc-trans

$ make

$ su

# make install

Apacheの設定ファイル(conf/httpd.conf)に次の行を追加します。

AddType application/x-httpd-php .php