diff --git a/plugins/php/versions/53/install.sh b/plugins/php/versions/53/install.sh index dd1b08f1f..5336d8693 100755 --- a/plugins/php/versions/53/install.sh +++ b/plugins/php/versions/53/install.sh @@ -62,6 +62,10 @@ if [ ! -d $serverPath/php/53 ];then --exec-prefix=$serverPath/php/53 \ --with-config-file-path=$serverPath/php/53/etc \ --with-zlib-dir=$serverPath/lib/zlib \ + --enable-mysqlnd \ + --with-mysql=mysqlnd \ + --with-pdo-mysql=mysqlnd \ + --with-mysqli=mysqlnd \ --enable-zip \ --enable-exif \ --enable-hash \ diff --git a/plugins/php/versions/54/install.sh b/plugins/php/versions/54/install.sh index b545f9b4a..0562ab6e6 100755 --- a/plugins/php/versions/54/install.sh +++ b/plugins/php/versions/54/install.sh @@ -48,6 +48,9 @@ if [ ! -d $serverPath/php/${PHP_VER} ];then --with-config-file-path=$serverPath/php/${PHP_VER}/etc \ --with-zlib-dir=$serverPath/lib/zlib \ --enable-mysqlnd \ + --with-mysql=mysqlnd \ + --with-pdo-mysql=mysqlnd \ + --with-mysqli=mysqlnd \ --enable-zip \ --enable-mbstring \ --enable-sockets \ diff --git a/plugins/php/versions/55/install.sh b/plugins/php/versions/55/install.sh index 899c5ad98..782467587 100755 --- a/plugins/php/versions/55/install.sh +++ b/plugins/php/versions/55/install.sh @@ -47,6 +47,9 @@ if [ ! -d $serverPath/php/55 ];then --with-config-file-path=$serverPath/php/55/etc \ --with-zlib-dir=$serverPath/lib/zlib \ --enable-mysqlnd \ + --with-mysql=mysqlnd \ + --with-pdo-mysql=mysqlnd \ + --with-mysqli=mysqlnd \ --enable-zip \ --enable-simplexml \ --enable-intl \ diff --git a/plugins/php/versions/56/install.sh b/plugins/php/versions/56/install.sh index 4148ed794..9f8b0c5f2 100755 --- a/plugins/php/versions/56/install.sh +++ b/plugins/php/versions/56/install.sh @@ -46,6 +46,7 @@ if [ ! -d $serverPath/php/56 ];then --exec-prefix=$serverPath/php/56 \ --with-config-file-path=$serverPath/php/56/etc \ --with-zlib-dir=$serverPath/lib/zlib \ + --enable-mysqlnd \ --with-mysql=mysqlnd \ --with-pdo-mysql=mysqlnd \ --with-mysqli=mysqlnd \