在PHP中启用ZLib支持

时间:2010-10-26 13:33:15

标签: php apache

我正在我的服务器上安装PHP脚本,当我尝试运行测试页时,我收到错误消息:

PHP needs to be compiled with ZLib support enabled (--with-zlib[=DIR])

如何在Apache上修复此问题?

1 个答案:

答案 0 :(得分:1)

我认为这是在Linux上?

如错误所示,您需要重新编译PHP安装。

查看您拥有PHP源的文件夹中的Makefile,查看上次使用的./configure行,使用所有相同的选项并添加--with-zlib

./configure --with-zlib ...(other config options)...
make
make install