我正在我的服务器上安装PHP脚本,当我尝试运行测试页时,我收到错误消息:
PHP needs to be compiled with ZLib support enabled (--with-zlib[=DIR])
如何在Apache上修复此问题?
答案 0 :(得分:1)
我认为这是在Linux上?
如错误所示,您需要重新编译PHP安装。
查看您拥有PHP源的文件夹中的Makefile,查看上次使用的./configure行,使用所有相同的选项并添加--with-zlib
./configure --with-zlib ...(other config options)...
make
make install