PHP-5 as CGI problem

paul.lkw

Verified User
Joined
Oct 25, 2007
Messages
10
Dear all:
I find the new version of DA always compile PHP as CGI or CLI, does here a way to compile PHP as standard model?

THX.
 
Yes,

Your options.conf should look like this: (Zend and dovecot enabled) and then use ./build php
Code:
#PHP settings. default_php possible values - 4 or 5
default_php=5
php4_cli=no
php4_cgi=no
php5_cli=yes
php5_cgi=no
zend=yes

#Possible values - 5.0 or 5.1 (4.1 is possible too, but it's EOL)
mysql=5.0
mysql_inst=yes

#Possible values - 1.3, 2.0 or 2.2
apache_ver=2.2

#Web applications
phpmyadmin=yes
squirrelmail=yes
roundcube=yes

#Mail options
mail-header-patch=yes
dovecot=yes
eximconf=no

#FTP options
proftpd=yes

#Custombuild options
clean=yes
 
Back
Top