-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
ss-install-php-packages.txt
322 lines (261 loc) · 14.1 KB
/
ss-install-php-packages.txt
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
#!/bin/bash
####################################################################################################
#### author: SlickStack ############################################################################
#### link: https://slickstack.io ###################################################################
#### mirror: littlebizzy/slickstack/blob/master/bash/ss-install-php-packages.txt ###################
#### path: /var/www/ss-install-php-packages ########################################################
#### destination: n/a (not a boilerplate) ##########################################################
#### purpose: Reinstalls the PHP-FPM module Ubuntu packages and extensions (idempotent) ############
#### module version: PHP-FPM 8.3.x #################################################################
#### sourced by: ss-install ########################################################################
#### bash aliases: ss install php packages #########################################################
####################################################################################################
## SS-CONFIG MUST BE PROPERLY CONFIGURED AND ON CURRENT BUILD BEFORE RUNNING SS-INSTALL ##
## ENSURE YOUR SS-CONFIG BUILD REMAINS CURRENT BY RUNNING SS-UPDATE OCCASIONALLY ##
####################################################################################################
#### TABLE OF CONTENTS (SS-Install-PHP-Packages) ###################################################
####################################################################################################
## this is a brief summary of the different code snippets you will find in this script ##
## each section should be commented so you understand what is being accomplished ##
## A. Source SS-Config + SS-Functions
## B. Touch Timestamp File
## C. Message (Begin Script)
## D. Update Existing Packages
## E. Install PHP-FPM + PHP Extensions
## F. Install PHP-Memcached Extension (Required)
## G. Set Default PHP Version
## H. Reset Permissions (PHP Packages)
## I. Purge Cache (PHP OPcache)
## J. Restart Services (PHP-FPM)
####################################################################################################
#### A. SS-Install-PHP-Packages: Source SS-Config + SS-Functions ###################################
####################################################################################################
## source ss-config ##
source /var/www/ss-config
## source ss-functions ##
source /var/www/ss-functions
## BELOW THIS RELIES ON SS-CONFIG AND SS-FUNCTIONS
####################################################################################################
#### B. SS-Install-PHP-Packages: Touch Timestamp File ##############################################
####################################################################################################
## this is a dummy timestamp file that will remember the last time this script was run ##
## it can be useful for developer reference and is sometimes used by SlickStack ##
ss_touch "${TIMESTAMP_SS_INSTALL_PHP_PACKAGES}"
####################################################################################################
#### C. SS-Install-PHP-Packages: Message (Begin Script) ############################################
####################################################################################################
## this is a simple message that announces to the shell the purpose of this bash script ##
## it will only be seen by sudo users who manually run this script in the shell ##
ss_echo "${COLOR_INFO}Running ss-install-php-packages... ${COLOR_RESET}"
####################################################################################################
#### D. SS-Install-PHP-Packages: Update Existing Packages ##########################################
####################################################################################################
## we must include the standard apt update/upgrade in case script is called directly ##
## this helps to avoid conflicts and outdated packages during installation ##
## SNIPPET: ss-install-[module]-packages bash scripts
## UPDATED: 08JUL2022
## update apt cache ##
ss_apt_update
## upgrade packages ##
ss_apt_upgrade
####################################################################################################
#### E. SS-Install-PHP-Packages: Install PHP-FPM + PHP Extensions ##################################
####################################################################################################
## here PHP-FPM will be installed along with any custom PHP extensions in your ss-config ##
## remember to check version compatibility of PHP extensions if you modify them ##
## ubuntu 24.04 ##
if [[ "${SYSTEM_UBUNTU_VERSION}" == "24.04" ]]; then
PHP_EXTENSIONS_NOW=$(source /var/www/ss-config; echo "${PHP_EXTENSIONS}")
ss_apt_install php8.3-fpm
ss_apt_install php8.3-bcmath
ss_apt_install php8.3-curl
ss_apt_install php8.3-gd
ss_apt_install php8.3-imagick
ss_apt_install php8.3-intl
ss_apt_install php8.3-mbstring
ss_apt_install php8.3-mysql
ss_apt_install php8.3-soap
ss_apt_install php8.3-sqlite3
ss_apt_install php8.3-ssh2
ss_apt_install php8.3-xml
ss_apt_install php8.3-zip
## https://stackoverflow.com/questions/27702452/loop-through-a-comma-separated-shell-variable
if [[ -n "${PHP_EXTENSIONS_NOW}" ]]; then
for i in ${PHP_EXTENSIONS_NOW//,/ }
do
ss_apt_install php8.3-"$i"
done
fi
fi
## ubuntu 22.04 ##
if [[ "${SYSTEM_UBUNTU_VERSION}" == "22.04" ]]; then
PHP_EXTENSIONS_NOW=$(source /var/www/ss-config; echo "${PHP_EXTENSIONS}")
ss_apt_install php8.1-fpm
ss_apt_install php8.1-bcmath
ss_apt_install php8.1-curl
ss_apt_install php8.1-gd
ss_apt_install php8.1-imagick
ss_apt_install php8.1-intl
ss_apt_install php8.1-mbstring
ss_apt_install php8.1-mysql
ss_apt_install php8.1-soap
ss_apt_install php8.1-sqlite3
ss_apt_install php8.1-ssh2
ss_apt_install php8.1-xml
ss_apt_install php8.1-zip
## https://stackoverflow.com/questions/27702452/loop-through-a-comma-separated-shell-variable
if [[ -n "${PHP_EXTENSIONS_NOW}" ]]; then
for i in ${PHP_EXTENSIONS_NOW//,/ }
do
ss_apt_install php8.1-"$i"
done
fi
fi
## ubuntu 20.04 ##
if [[ "${SYSTEM_UBUNTU_VERSION}" == "20.04" ]]; then
PHP_EXTENSIONS_NOW=$(source /var/www/ss-config; echo "${PHP_EXTENSIONS}")
ss_apt_install php7.4-fpm
ss_apt_install php7.4-bcmath
ss_apt_install php7.4-ctype
ss_apt_install php7.4-curl
ss_apt_install php7.4-dom
ss_apt_install php7.4-fileinfo
ss_apt_install php7.4-gd
ss_apt_install php7.4-iconv
ss_apt_install php7.4-intl
ss_apt_install php7.4-imagick
ss_apt_install php7.4-json
ss_apt_install php7.4-mbstring
ss_apt_install php7.4-mysql
ss_apt_install php7.4-simplexml
ss_apt_install php7.4-soap
ss_apt_install php7.4-sockets
ss_apt_install php7.4-sqlite3
ss_apt_install php7.4-ssh2
ss_apt_install php7.4-xml
ss_apt_install php7.4-xmlwriter
ss_apt_install php7.4-xsl
ss_apt_install php7.4-zip
## https://stackoverflow.com/questions/27702452/loop-through-a-comma-separated-shell-variable
if [[ -n "${PHP_EXTENSIONS_NOW}" ]]; then
for i in ${PHP_EXTENSIONS_NOW//,/ }
do
ss_apt_install php7.4-"$i"
done
fi
fi
## ubuntu 18.04 ##
if [[ "${SYSTEM_UBUNTU_VERSION}" == "18.04" ]]; then
PHP_EXTENSIONS_NOW=$(source /var/www/ss-config; echo "${PHP_EXTENSIONS}")
ss_apt_install php7.2-fpm
ss_apt_install php7.2-bcmath
ss_apt_install php7.2-curl
ss_apt_install php7.2-gd
ss_apt_install php7.2-imagick
ss_apt_install php7.2-json
ss_apt_install php7.2-mbstring
ss_apt_install php7.2-mysql
ss_apt_install php7.2-soap
ss_apt_install php7.2-sqlite3
ss_apt_install php7.2-ssh2
ss_apt_install php7.2-xml
ss_apt_install php7.2-zip
## https://stackoverflow.com/questions/27702452/loop-through-a-comma-separated-shell-variable
if [[ -n "${PHP_EXTENSIONS_NOW}" ]]; then
for i in ${PHP_EXTENSIONS_NOW//,/ }
do
ss_apt_install php7.2-"$i"
done
fi
fi
####################################################################################################
#### F. SS-Install-PHP-Packages: Install PHP-Memcached Extension (Required) ########################
####################################################################################################
## we force install the php-redis extension to ensure it exists on SlickStack servers ##
## this is because Redis is a core module and required for i.e. object caching ##
## ubuntu 24.04 ##
if [[ "${SYSTEM_UBUNTU_VERSION}" == "24.04" ]]; then
ss_apt_install php-memcached
ss_apt_install php-memcache
fi
## ubuntu 22.04 ##
if [[ "${SYSTEM_UBUNTU_VERSION}" == "22.04" ]]; then
ss_apt_install php-memcached
ss_apt_install php-memcache
fi
## ubuntu 20.04 ##
if [[ "${SYSTEM_UBUNTU_VERSION}" == "20.04" ]]; then
ss_apt_install php-memcached
ss_apt_install php-memcache
fi
## ubuntu 18.04 ##
if [[ "${SYSTEM_UBUNTU_VERSION}" == "18.04" ]]; then
ss_apt_install php-memcached
ss_apt_install php-memcache
fi
####################################################################################################
#### G. SS-Install-PHP-Packages: Set Default PHP Version ###########################################
####################################################################################################
## here we set the default PHP version depending on the version of Ubuntu LTS detected ##
## in most cases this step is not necessary but we do it anyway for consistency ##
## ubuntu 24.04 ##
if [[ "${SYSTEM_UBUNTU_VERSION}" == "24.04" ]]; then
update-alternatives --set php /usr/bin/php8.3
fi
## ubuntu 22.04 ##
if [[ "${SYSTEM_UBUNTU_VERSION}" == "22.04" ]]; then
update-alternatives --set php /usr/bin/php8.1
fi
## ubuntu 20.04 ##
if [[ "${SYSTEM_UBUNTU_VERSION}" == "20.04" ]]; then
update-alternatives --set php /usr/bin/php7.4
fi
## ubuntu 18.04 ##
if [[ "${SYSTEM_UBUNTU_VERSION}" == "18.04" ]]; then
update-alternatives --set php /usr/bin/php7.2
fi
####################################################################################################
#### H. SS-Install-PHP-Packages: Reset Permissions (PHP Packages) ##################################
####################################################################################################
source "${PATH_SS_PERMS_PHP_PACKAGES}"
####################################################################################################
#### I. SS-Install-PHP-Packages: Purge Cache (PHP OPcache) #########################################
####################################################################################################
source "${PATH_SS_PURGE_OPCACHE}"
####################################################################################################
#### J. SS-Install-PHP-Packages: Restart Services (PHP-FPM) ########################################
####################################################################################################
source "${PATH_SS_RESTART_PHP}"
####################################################################################################
#### SlickStack: Reset Permissions (SlickStack Scripts) ############################################
####################################################################################################
## we include this permissions reset in all cron jobs and bash scripts for redundancy ##
## chmod 0700 means only the root/sudo users can execute any SlickStack scripts ##
## THIS SNIPPET DOES NOT RELY ON SS-CONFIG OR SS-FUNCTIONS
## SNIPPET: ss bash scripts, ss cron jobs
## UPDATED: 02JUL2022
chown root:root /var/www/ss* ## must be root:root
chown root:root /var/www/crons/*cron* ## must be root:root
chown root:root /var/www/crons/custom/*cron* ## must be root:root
chmod 0700 /var/www/ss* ## 0700 means only root/sudo can execute
chmod 0700 /var/www/crons/*cron* ## 0700 means only root/sudo can execute
chmod 0700 /var/www/crons/custom/*cron* ## 0700 means only root/sudo can execute
####################################################################################################
#### SlickStack: External References Used To Improve This Script (Thanks, Interwebz) ###############
####################################################################################################
## Ref: https://askubuntu.com/questions/541781/install-list-of-packages-using-apt-get
## Ref: https://stackoverflow.com/questions/22284131/why-cant-i-install-multiple-packages-with-apt-get-install
## Ref: https://askubuntu.com/questions/913221/why-does-my-install-shell-script-not-work-when-i-can-run-it-line-by-line-and-it
## Ref: https://askubuntu.com/questions/39497/apt-get-install-multiple-packages-without-stopping
## Ref: https://www.getastra.com/kb/knowledgebase/how-to-install-sqlite-for-php-on-my-apache-nginx-server/
## Ref: https://www.phoronix.com/scan.php?page=news_item&px=Ubuntu-21.10-PHP-8-Transition
## Ref: https://linuxize.com/post/how-to-check-if-string-contains-substring-in-bash/
## Ref: https://stackoverflow.com/questions/229551/how-to-check-if-a-string-contains-a-substring-in-bash
## Ref: https://stackoverflow.com/questions/27702452/loop-through-a-comma-separated-shell-variable
## Ref: https://haydenjames.io/memcache-php-extensions-for-memcached-caching-daemon/
## Ref: https://serverfault.com/questions/63383/memcache-vs-memcached
## Ref: https://stackoverflow.com/questions/2659035/php-memcached-fatal-error-class-memcache-not-found
## Ref: https://wordpress.org/support/topic/class-memcache-error/
## Ref: https://stackoverflow.com/questions/72787640/the-optional-module-intl-is-not-installed-or-has-been-disabled
## Ref: https://make.wordpress.org/hosting/2021/05/20/why-hosters-should-install-the-php-intl-extension/
## SS_EOF