phpとapacheの連携
php 5.3.29とapache2.2をソースからインストールしています。
OS:CentOS7
phpのconfigureオプション
[root@localhost php-5.3.29]# ./configure \
--prefix=/usr/local/php5 \
--with-apxs2=/usr/local/apache/bin/apxs \
--without-sqlite \
--enable-mbstring \
--enable-zend-multibyte \
--enable-ftp \
--enable-sockets \
--with-mysql=/usr/local/mysql \
--with-gd \
--with-jpeg-dir \
--with-png-dir \
--with-freetype-dir \
--with-zlib \
apacheのconfigureオプション
[root@localhost apache]# ./configure
--prefix=/usr/local/php
--enable-mbstring
--with-apxs2=/usr/sbin/apxs
--with-config-file-path=/usr/local/php/lib/
--enable-zend-multibyte
--enable-mbregex
--with-mime-magic
--enable-exif
--with-gd
--with-zlib
--with-jpeg-dir
--with-mysql=/usr/local/mysql/^
参考サイト
http://toriaezu-engineer.hatenablog.com/entry/2013/09/15/001120
両者を連携するmodules/libphp5.soが生成されると下記のサイトに書いていますが私の方では生成されません。オプションが間違っているのか根本的に間違っているのか、途方にくれています。
連携のアドバイス/ご指摘を頂きたいです。
当方初学者であることをご了承下さい。