Skip to main content

Posts

Showing posts from January, 2016

[linux] Compile PHP

apt-get install aptitude -y aptitude install libmcrypt-dev ./configure --enable-mbstring --enable-fpm --enable-fastcgi --with-config-file-scan-dir --with-mysqli --with-mcrypt --with-pdo-mysql --with-openssl --with-gd --prefix=/etc/php/5.5.31; make; make install ./configure --enable-mbstring --enable-fpm --enable-fastcgi --with-config-file-scan-dir --with-mcrypt --with-pdo-mysql --with-openssl --with-gd --prefix=/etc/php/5.6.17; make; make install apt-get install libpng12-dev apt-get install php7.0-gd ./configure --enable-mbstring --enable-fpm --with-fpm-user=daniel --with-fpm-group=daniel --enable-fastcgi --with-config-file-scan-dir --with-mysqli --with-mcrypt --with-pdo-mysql --with-pdo-pgsql --with-pgsql --with-openssl --with-gd --with-gmp=/home/daniel/php-7.0.2/ext/gmp/php_gmp.h --with-curl --with-zlib; make; sudo make install