./configure --prefix=/usr/local/nginx-php --enable-fastcgi --enable-fpm --with-mcrypt --with-zlib --enable-mbstring --with-openssl --with-mysql --with-mysqli --with-gd --with-jpeg-dir --enable-gd-native-ttf --without-sqlite --disable-pdo --disable-reflection --with-curl --with-curlwrappers --enable-inline-optimization --disable-debug
한번 봐주실수 있을까요?
이 컴파일 옵션에 문제가 없길 바래야겠네요… ㅠㅠ
zend optimizer가 안올라가는 마지막 이유로 생각됩니다 ㅠ
php 버전이 얼마인지… 제가 기억하기론 php 5.3 부터는 Zend Optimizer가 안붙지 않나요;; 공식적으로 지원하지 않는 것으로;; 5.3 이후에는 Zend Guard로 지원하는 것으로 알고 있습니다~;
예전에 CentOS로 작업할 때는 아래와 같이 작업했었습니다.
[code:2cuwo1fx]# tar zxvf php-5.2.1.tar.gz
cd php-5.2.1
./configure --prefix=/usr/local/server/php --with-apxs2=/usr/local/server/apache/bin/apxs \
–with-mysql=/usr/local/server/mysql --with-config-file-path=/usr/local/server/apache/conf
–disable-debug --enable-safe-mode --enable-track-vars --enable-sockets --with-mod_charset
–with-charset=utf8 --with-xml --with-language=korean --enable-mailparse --enable-calendar
–enable-sysvsem=yes --enable-sysvshm=yes --enable-ftp --enable-magic-quotes --enable-gd-native-ttf
–enable-url-includes --enable-trans-id --enable-inline-optimization --enable-bcmath --with-jpeg
–with-png --with-zlib --with-jpeg-dir=/usr --with-png-dir=/usr/lib --with-freetype-dir=/usr
–with-libxml-dir=/usr --enable-exif --with-gd --with-ttf --with-gettext --enable-sigchild
–enable-mbstring[/code:2cuwo1fx]