使用phpfarm安装/卸载php-5.2.17

时间:2015-03-19 10:31:16

标签: php server phpfarm

我之前使用简单的

安装了php-5.2.17
./compile.sh 5.2.17

我没有定义任何自定义选项。但后来我意识到它正在使用cgi,我希望它使用fastcgi,所以我创建了自定义文件

configoptions="
    –enable-cli \
    –with-pear \
    –with-openssl=/usr \
    –with-iconv \
    –with-curl \
    –with-mysqli \
    –enable-mbstring \
    –enable-exif \
    –with-jpeg-dir=/usr \
    –with-zlib \
    –with-zlib-dir \
    –with-png-dir=/usr \
    –with-gd \
    –with-gettext \
    –enable-gd-native-ttf \
    –with-mhash \
    –enable-ftp \
    –with-pspell \
    –with-mcrypt \
    –enable-bcmath \
    –with-mime-magic \
    –with-pdo-mysql \
    –enable-sockets \
    –enable-soap \
   –enable-calendar \
    –enable-fastcgi \
    –enable-force-cgi-redirect \
"

现在,当我使用上面的命令进行编译时,它会给出

5.2.17 5 2 17
configure: error: can only configure for one host and one target at a time
configure.sh failed.

请注意,我已根据在线教程修补了所有必要的内容。

我正在使用Ubuntu 14.4

1 个答案:

答案 0 :(得分:1)

我通过php-farm github页面阅读,this部分引起了我的注意。

它描述了custom/default-versions.txt文件经常用于重新编译相同的php版本。