Skip to content

Commit 3857a8c

Browse files
committed
Fix hestiacp#2069 Unable to load module
By deleting phpx.x-common also
1 parent b713af8 commit 3857a8c

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ All notable changes to this project will be documented in this file.
2222
- Fixed security issues in caching templates of Nginx when used as Reverse Proxy
2323
- Fixed an issue with deleting multiple mail accounts (#2047)
2424
- Fixed an issue with phpmailer + non latin characters (#2050) thanks @Faymir
25+
- Fix Unable to load dynamic library 'pdo_mysql.so' after php reinstalling (#2069)
2526

2627
## [1.4.9] - Service release
2728

bin/v-add-web-php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ check_hestia_demo_mode
5858
# Action #
5959
#----------------------------------------------------------#
6060

61-
mph="php$version-mbstring php$version-bcmath php$version-cli php$version-curl
61+
mph="php$version-common php$version-mbstring php$version-bcmath php$version-cli php$version-curl
6262
php$version-fpm php$version-gd php$version-intl php$version-mysql
6363
php$version-soap php$version-xml php$version-zip php$version-mbstring
6464
php$version-json php$version-bz2 php$version-pspell php$version-imagick php$version-pgsql

bin/v-delete-web-php

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,12 @@ check_hestia_demo_mode
5555
# Action #
5656
#----------------------------------------------------------#
5757

58-
mph="php$version-mbstring php$version-bcmath php$version-cli php$version-curl
59-
php$version-fpm php$version-gd php$version-intl php$version-mysql
60-
php$version-soap php$version-xml php$version-zip php$version-mbstring
61-
php$version-json php$version-bz2 php$version-pspell"
62-
58+
mph="php$version-common php$version-mbstring php$version-bcmath php$version-cli php$version-curl
59+
php$version-fpm php$version-gd php$version-intl php$version-mysql
60+
php$version-soap php$version-xml php$version-zip php$version-mbstring
61+
php$version-json php$version-bz2 php$version-pspell php$version-imagick php$version-pgsql
62+
php$version-imap php$version-ldap"
63+
6364
# Check is version is 7.1 or below to add mcrypt
6465
if [[ `echo "$version 7.2" | awk '{print ($1 < $2)}'` == 1 ]]; then
6566
mph="$mph php$version-mcrypt"

0 commit comments

Comments
 (0)