さっそくインストールしましょう。
ターゲットはFC7のi386。シングルコア。
◇インストール(i386)
wget http://jp.php.net/distributions/php-4.4.7.tar.bz2
tar jxvf php-4.4.7.tar.bz2
cd php-4.4.7
./configure\\
--prefix=/usr/local\\
--enable-mbstring\\
--enable-mbstr-enc-trans\\
--enable-mbregex\\
--enable-zend-multibyte\\
--with-mysql=/usr\\
--with-apxs2=/usr/sbin/apxs\\
--with-iconv\\
--enable-soap\\
--with-gettext
make
make install
cd ..
rm -rf php-4.4.7
# httpd.conf に追加されるエントリを削除
perl -i -pe 's|^.*php4_module.*\\n$||g' /etc/httpd/conf/httpd.conf
# httpd.conf に読み込まれるphp4モジュール用のファイルを作成
cat > /etc/httpd/conf.d/php4.conf << EOF
LoadModule php4_module /usr/lib/httpd/modules/libphp4.so
AddType application/x-httpd-php .php
DirectoryIndex index.php
EOF
# php5モジュール が読み込まれないようにファイル名を変更
mv /etc/httpd/conf.d/php.conf /etc/httpd/conf.d/php5.conf-disabled
/etc/rc.d/init.d/httpd restart
◇動作確認
phpinfoで(ry