我正在尝试在Ubuntu 16.04.1服务器上的Apache 2.4.18上安装php 5.3.21
我根据tarball中的README执行了整个download / untar / configure
/ make
/ make install
过程,但找不到模块的.so,这意味着我无法加载php的如果我没有这个文件,请将代码写入Apache
据我所知,我正确编译了PHP。它甚至通过了make test
提供的测试
如何指示make
构建此文件?
答案 0 :(得分:0)
您使用了正确的configure
命令吗?
我使用PHP 5.3为我的服务器创建了一个:
./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
此配置命令从未出现任何问题。