Files
lamp/include/php.sh
Teddysun 9a75fcd07c Update comments
Added Apache 2.4 Loaded Modules
Removed Apache 2.2, PHP 5.3, 5.4, 5.5 installation
Removed Zend Guard Loader installation
Removed phpMyAdmin 4.4.15.10 installation

Signed-off-by: Teddysun <i@teddysun.com>
2017-12-10 14:09:18 +09:00

184 lines
6.0 KiB
Bash

# Copyright (C) 2014 - 2017, Teddysun <i@teddysun.com>
#
# This file is part of the LAMP script.
#
# LAMP is a powerful bash script for the installation of
# Apache + PHP + MySQL/MariaDB/Percona and so on.
# You can install Apache + PHP + MySQL/MariaDB/Percona in an very easy way.
# Just need to input numbers to choose what you want to install before installation.
# And all things will be done in a few minutes.
#
# Website: https://lamp.sh
# Github: https://github.com/teddysun/lamp
#Pre-installation php
php_preinstall_settings(){
if [[ "${apache}" == "do_not_install" ]]; then
php="do_not_install"
else
display_menu php 1
fi
if [ "${php}" != "do_not_install" ]; then
if [ "${mysql}" != "do_not_install" ]; then
if [[ "${php}" == "${php7_0_filename}" || "${php}" == "${php7_1_filename}" || "${php}" == "${php7_2_filename}" ]]; then
with_mysql="--enable-mysqlnd --with-mysqli=mysqlnd --with-mysql-sock=/tmp/mysql.sock --with-pdo-mysql=mysqlnd"
else
with_mysql="--enable-mysqlnd --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-mysql-sock=/tmp/mysql.sock --with-pdo-mysql=mysqlnd"
fi
else
with_mysql=""
fi
if [[ "${php}" == "${php7_0_filename}" || "${php}" == "${php7_1_filename}" || "${php}" == "${php7_2_filename}" ]]; then
with_gd="--with-gd --with-webp-dir --with-jpeg-dir --with-png-dir --with-xpm-dir --with-freetype-dir"
elif [[ "${php}" == "${php5_6_filename}" ]]; then
with_gd="--with-gd --with-vpx-dir --with-jpeg-dir --with-png-dir --with-xpm-dir --with-freetype-dir"
fi
if [[ "${php}" == "${php7_2_filename}" ]]; then
other_options="--enable-zend-test"
else
other_options="--with-mcrypt --enable-gd-native-ttf"
fi
if check_sys packageManager yum; then
with_imap="--with-imap=${depends_prefix}/imap"
elif check_sys packageManager apt; then
with_imap="--with-imap --with-kerberos"
fi
is_64bit && with_libdir="--with-libdir=lib64" || with_libdir=""
php_configure_args="--prefix=${php_location} \
--with-apxs2=${apache_location}/bin/apxs \
--with-config-file-path=${php_location}/etc \
--with-config-file-scan-dir=${php_location}/php.d \
--with-pcre-dir=${depends_prefix}/pcre \
${with_imap} \
--with-imap-ssl \
--with-libxml-dir \
--with-openssl \
--with-snmp \
${with_libdir} \
${with_mysql} \
${with_gd} \
--with-zlib \
--with-bz2 \
--with-curl=/usr \
--with-gettext \
--with-gmp \
--with-mhash \
--with-icu-dir=/usr \
--with-ldap \
--with-ldap-sasl \
--with-libmbfl \
--with-onig \
--with-unixODBC \
--with-pspell=/usr \
--with-enchant=/usr \
--with-readline \
--with-tidy=/usr \
--with-xmlrpc \
--with-xsl \
--without-pear \
${other_options} \
--enable-bcmath \
--enable-calendar \
--enable-dba \
--enable-exif \
--enable-ftp \
--enable-gd-jis-conv \
--enable-intl \
--enable-mbstring \
--enable-pcntl \
--enable-shmop \
--enable-soap \
--enable-sockets \
--enable-wddx \
--enable-zip \
${disable_fileinfo}"
fi
}
#Intall PHP
install_php(){
#Install PHP depends
install_php_depends
cd ${cur_dir}/software/
if [ "${php}" == "${php5_6_filename}" ]; then
download_file "${php5_6_filename}.tar.gz"
tar zxf ${php5_6_filename}.tar.gz
cd ${php5_6_filename}
elif [ "${php}" == "${php7_0_filename}" ]; then
download_file "${php7_0_filename}.tar.gz"
tar zxf ${php7_0_filename}.tar.gz
cd ${php7_0_filename}
elif [ "${php}" == "${php7_1_filename}" ]; then
download_file "${php7_1_filename}.tar.gz"
tar zxf ${php7_1_filename}.tar.gz
cd ${php7_1_filename}
elif [ "${php}" == "${php7_2_filename}" ]; then
download_file "${php7_2_filename}.tar.gz"
tar zxf ${php7_2_filename}.tar.gz
cd ${php7_2_filename}
fi
unset LD_LIBRARY_PATH
unset CPPFLAGS
error_detect "./configure ${php_configure_args}"
ldconfig
error_detect "parallel_make ZEND_EXTRA_LIBS='-liconv'"
error_detect "make install"
mkdir -p ${php_location}/{etc,php.d}
cp -f ${cur_dir}/conf/php.ini ${php_location}/etc/php.ini
config_php
}
config_php(){
rm -f /etc/php.ini /usr/bin/php /usr/bin/php-config /usr/bin/phpize
ln -s ${php_location}/etc/php.ini /etc/php.ini
ln -s ${php_location}/bin/php /usr/bin/
ln -s ${php_location}/bin/php-config /usr/bin/
ln -s ${php_location}/bin/phpize /usr/bin/
extension_dir=`php-config --extension-dir`
cat > ${php_location}/php.d/opcache.ini<<-EOF
[opcache]
zend_extension=${extension_dir}/opcache.so
opcache.enable_cli=1
opcache.memory_consumption=128
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=4000
opcache.revalidate_freq=60
opcache.fast_shutdown=1
opcache.save_comments=0
EOF
cp -f ${cur_dir}/conf/ocp.php ${web_root_dir}/ocp.php
chown apache:apache ${web_root_dir}/ocp.php
if [[ -d ${mysql_data_location} || -d ${mariadb_data_location} || -d ${percona_data_location} ]]; then
sock_location=/tmp/mysql.sock
sed -i "s#mysql.default_socket.*#mysql.default_socket = ${sock_location}#" ${php_location}/etc/php.ini
sed -i "s#mysqli.default_socket.*#mysqli.default_socket = ${sock_location}#" ${php_location}/etc/php.ini
sed -i "s#pdo_mysql.default_socket.*#pdo_mysql.default_socket = ${sock_location}#" ${php_location}/etc/php.ini
fi
if [[ -d ${apache_location} ]]; then
sed -i "s@AddType\(.*\)Z@AddType\1Z\n AddType application/x-httpd-php .php .phtml\n AddType appication/x-httpd-php-source .phps@" ${apache_location}/conf/httpd.conf
fi
}