Apache2 和 PHP5 无法协同工作

Apache2 和 PHP5 无法协同工作

我使用所有默认配置(只需 ./configure、make、make install)在系统上安装了最新的 apache web 服务器。然后我尝试将 PHP5 绑定到它,但始终无法让它工作。

我做的第一件事就是尝试让它使用以下设置:

./configure --with-apxs2=/usr/local/apache2/bin/apxs prefix=/usr/local/apache2/php --with-config-file-path=/usr/local/apache2/php --enable-force-cgi-redirect --disable-cgi --enable-shared

当我尝试“进行安装”时出现了这个错误:

Warning! dlname not found in /usr/local/apache2/modules/libphp5.la.
Assuming installing a .so rather than a libtool archive.
chmod 755 /usr/local/apache2/modules/libphp5.so
chmod: cannot access `/usr/local/apache2/modules/libphp5.so': No such file or directory
apxs:Error: Command failed with rc=65536

因此,我尝试了不使用任何选项(除了 apxs2)进行配置,并能够进行 make 和 make install。这是 make install 的输出:

Installing PHP SAPI module:       apache2handler
/usr/local/apache2/build/instdso.sh SH_LIBTOOL='/usr/lib64/apr-1/build/libtool' libphp5.la /usr/local/apache2/modules
/usr/lib64/apr-1/build/libtool --mode=install cp libphp5.la /usr/local/apache2/modules/
l    ibtool: install: cp .libs/libphp5.so /usr/local/apache2/modules/libphp5.so
libtool: install: cp .libs/libphp5.lai /usr/local/apache2/modules/libphp5.la
libtool: install: warning: remember to run `libtool --finish /home/max/Desktop/localhost/php-5.3.6/libs'
chmod 755 /usr/local/apache2/modules/libphp5.so
[activating module `php5' in /usr/local/apache2/conf/httpd.conf]
Installing PHP CLI binary:        /usr/local/bin/
Installing PHP CLI man page:      /usr/local/man/man1/
Installing build environment:     /usr/local/lib/php/build/
Installing header files:          /usr/local/include/php/
Installing helper programs:       /usr/local/bin/
  program: phpize
  program: php-config
Installing man pages:             /usr/local/man/man1/
  page: phpize.1
  page: php-config.1
Installing PEAR environment:      /usr/local/lib/php/
[PEAR] Archive_Tar    - already installed: 1.3.7
[PEAR] Console_Getopt - already installed: 1.3.0
[PEAR] Structures_Graph- already installed: 1.0.4
[PEAR] XML_Util       - already installed: 1.2.1
[PEAR] PEAR           - already installed: 1.9.2
Wrote PEAR system config file at: /usr/local/etc/pear.conf
You may want to add: /usr/local/lib/php to your php.ini include_path
/home/max/Desktop/localhost/php-5.3.6/build/shtool install -c ext/phar/phar.phar /usr/local/bin
ln -s -f /usr/local/bin/phar.phar /usr/local/bin/phar
Installing PDO headers:          /usr/local/include/php/ext/pdo/

我重新启动了 apache 服务并转到 localhost 查看 php 文件,但是没有用(apache 只是索引 htdocs 文件夹中的 .php 文件并让我下载它们)。

有任何想法吗?

答案1

确保 Apache 配置文件中包含 PHP,并且为其设置了正确的处理程序。

LoadModule php5_module /usr/lib/apache2/modules/libphp5.so
<IfModule mod_php5.c>
    <FilesMatch "\.ph(p3?|tml)$">
        SetHandler application/x-httpd-php
    </FilesMatch>
</IfModule>

无论如何:您确定需要从源代码编译 Apache 和 PHP 吗?大多数 Linux 发行版都有预编译的软件包,配置起来也容易得多。

答案2

如果你使用的是 64 位操作系统(看起来是这样),你可能会遇到这个错误这是由于 64 位文件的库路径不同造成的。最后列出了两种可能的解决方案:

  1. 使用所需选项运行 ./configure
  2. 编辑 ./libtool:将 /usr/lib64 添加到sys_lib_search_path_specANDsys_lib_dlsearch_path_spec
  3. 制作/安装

或者

  1. 使用 bz2 PHP 源下载而不是 gz

相关内容