forked from teddysun/lamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupgrade_php.sh
137 lines (125 loc) · 5.27 KB
/
upgrade_php.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# Copyright (C) 2013 - 2023 Teddysun <[email protected]>
#
# This file is part of the LAMP script.
#
# LAMP is a powerful bash script for the installation of
# Apache + PHP + MySQL/MariaDB and so on.
# You can install Apache + PHP + MySQL/MariaDB 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
#upgrade php
upgrade_php(){
if [ ! -d "${php_location}" ]; then
_error "PHP looks like not installed, please check it and try again."
fi
local tram=$( free -m | awk '/Mem/ {print $2}' )
local swap=$( free -m | awk '/Swap/ {print $2}' )
local ramsum=$( expr $tram + $swap )
[ ${ramsum} -lt 1025 ] && disable_fileinfo="--disable-fileinfo" || disable_fileinfo=""
local phpConfig=${php_location}/bin/php-config
local php_version=$(get_php_version "${phpConfig}")
local php_extension_dir=$(get_php_extension_dir "${phpConfig}")
local installed_php=$(${php_location}/bin/php -r 'echo PHP_VERSION;' 2>/dev/null)
local configure_options=$(${phpConfig} --configure-options)
local openssl_version=$(openssl version -v)
local major_version=$(echo ${openssl_version} | awk '{print $2}' | grep -oE "[0-9.]+")
case "${php_version}" in
5.6)
latest_php="5.6.40"
;;
7.0)
latest_php="7.0.33"
;;
7.1)
latest_php="7.1.33"
;;
7.2)
latest_php="7.2.34"
;;
7.3)
latest_php="7.3.33"
;;
7.4)
latest_php="$(curl -4s https://www.php.net/downloads.php | awk '/Changelog/{print $2}' | grep '7.4')"
;;
8.0)
latest_php="$(curl -4s https://www.php.net/downloads.php | awk '/Changelog/{print $2}' | grep '8.0')"
;;
8.1)
latest_php="$(curl -4s https://www.php.net/downloads.php | awk '/Changelog/{print $2}' | grep '8.1')"
;;
*)
# do nothing
esac
_info "Latest version of PHP : $(_red ${latest_php})"
_info "Installed version of PHP: $(_red ${installed_php})"
read -p "Do you want to upgrade PHP? (y/n) (Default: n):" upgrade_php
[ -z "${upgrade_php}" ] && upgrade_php="n"
if [[ "${upgrade_php}" = "y" || "${upgrade_php}" = "Y" ]]; then
_info "PHP upgrade start..."
if [[ -d "${php_location}.bak" && -d "${php_location}" ]]; then
rm -rf ${php_location}.bak
fi
mv ${php_location} ${php_location}.bak
if [ ! -d ${cur_dir}/software ]; then
mkdir -p ${cur_dir}/software
fi
[ ! -e "${depends_prefix}/libiconv/bin/iconv" ] && install_libiconv
if ! grep -q -w -E "^${depends_prefix}/libiconv/lib" /etc/ld.so.conf.d/*.conf; then
echo "${depends_prefix}/libiconv/lib" > /etc/ld.so.conf.d/libiconvlib.conf
fi
cd ${cur_dir}/software
if [ -s "php-${latest_php}.tar.gz" ]; then
rm -fr php-${latest_php}/
tar zxf php-${latest_php}.tar.gz
cd php-${latest_php}/
else
latest_php_link="https://www.php.net/distributions/php-${latest_php}.tar.gz"
backup_php_link="${download_root_url}/php-${latest_php}.tar.gz"
untar ${latest_php_link} ${backup_php_link}
fi
# Fixed a libenchant-2 error in PHP 7.4 for Debian or Ubuntu
if [ "${php_version}" == "7.4" ] && dpkg -l 2>/dev/null | grep -q "libenchant-2-dev"; then
patch -p1 < ${cur_dir}/src/remove-deprecated-call-and-deprecate-function.patch
patch -p1 < ${cur_dir}/src/use-libenchant-2-when-available.patch
./buildconf -f
fi
# Fixed PHP extension snmp build without DES
if [ "${php_version}" == "7.4" ]; then
patch -p1 < ${cur_dir}/src/php-7.4-snmp.patch
fi
# Fixed build with OpenSSL 3.0 with disabling useless RSA_SSLV23_PADDING
if [ "${php_version}" == "7.4" ] && version_ge ${major_version} 3.0.0; then
patch -p1 < ${cur_dir}/src/minimal_fix_for_openssl_3.0_php7.4.patch
fi
if [ "${php_version}" == "8.0" ] && version_ge ${major_version} 3.0.0; then
patch -p1 < ${cur_dir}/src/minimal_fix_for_openssl_3.0_php8.0.patch
fi
ldconfig
error_detect "./configure ${configure_options}"
error_detect "parallel_make"
error_detect "make install"
mkdir -p ${php_location}/{etc,php.d}
cp -pf ${php_location}.bak/etc/php.ini ${php_location}/etc/php.ini
cp -pn ${php_location}.bak/lib/php/extensions/no-debug-zts-*/* ${php_extension_dir}/
if [ $(ls ${php_location}.bak/php.d/ | wc -l) -gt 0 ]; then
cp -pf ${php_location}.bak/php.d/* ${php_location}/php.d/
fi
_info "Restart Apache..."
/etc/init.d/httpd stop > /dev/null 2>&1
sleep 3
/etc/init.d/httpd start > /dev/null 2>&1
_info "Clear up start..."
cd ${cur_dir}/software
rm -rf php-${latest_php}/
rm -f php-${latest_php}.tar.gz
_info "Clear up completed..."
echo
_info "PHP upgrade completed..."
else
_info "PHP upgrade cancelled, nothing to do..."
fi
}