正しいconfigure
コマンドを使用しましたか?
私はPHP 5.3を使用して自分のサーバーのための1つを作っ:
./configure --prefix=/usr/share/php53 --datadir=/usr/share/php53 --mandir=/usr/share/man --bindir=/usr/bin/php53 --with-libdir=lib/x86_64-linux-gnu --includedir=/usr/include/php53 --sysconfdir=/etc/php53/apache2 --with-config-file-path=/etc/php53/apache2 --with-config-file-scan-dir=/etc/php53/conf.d --enable-libxml --enable-session --with-pcre-regex=/usr --enable-xml --enable-simplexml --enable-filter --disable-debug --enable-inline-optimization --disable-rpath --disable-static --enable-shared --with-pic --with-gnu-ld --with-mysql --with-gd --with-jpeg-dir --with-png-dir --with-xpm-dir --enable-exif --with-zlib --with-bz2 --with-curl --with-ldap --with-mysqli --with-freetype-dir --enable-soap --enable-sockets --enable-calendar --enable-ftp --enable-mbstring --enable-gd-native-ttf --enable-bcmath --enable-zip --with-pear --with-openssl=/usr --with-imap --with-imap-ssl --with-kerberos --enable-phar --enable-pdo --with-pdo-mysql --with-mysqli --with-mcrypt=shared,/usr
は、このconfigureコマンドで何か問題があったことはありません。
この設定を使用しようとしましたが、役に立たなかったです。私が理解しているところでは、モジュールの.soファイル、 'libphp5.so'、' mod_php.so'またはこれに類するものが必要ですが、見つけられません。この共有ライブラリがなければ、Apacheをロードするように設定することはできません。このマニュアルの例は、これをApacheの設定ファイル 'LoadModule php5_module modules/libphp5.so'に書いています。 – agxxvi