I installed PHP5 on my debian lenny system as cgi. Now I found that flush() in php is only working for php installed as module. Anyone know how to (re)install php5 as module? (apache2)

Thanks :)

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Just copy and paste the following.

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

and it should be done. You will be asked for a password.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.