如何将 php5 cgi 转换为模块?

如何将 php5 cgi 转换为模块?

我在 debian lenny 系统上以 cgi 形式安装了 PHP5。现在我发现 php 中的 flush() 仅适用于作为模块安装的 php。有人知道如何(重新)安装 php5 作为模块吗?(apache2)

谢谢 :)

答案1

只需复制并粘贴以下内容。

sudo -i
aptitude -y remove php5-cgi
aptitude -y install libapache2-mod-php5
/etc/init.d/apache2 restart

就完成了。系统会要求您输入密码。

相关内容