-1

如何在 CentOS 6.6 和 php 5.5 中安装或启用mysqlnd ?

安装在服务器中的 directadmin 和yum 命令不起作用。

我像这样使用directAdmin CustomBuild。

--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-mysql=mysqlnd \
--with-mysql-sock=/var/lib/mysql/mysql.sock \

但是在./build php n之后什么也没发生。

请帮我 。

4

1 回答 1

0

你能试试下面的命令吗?

cd /usr/local/directadmin/custombuild
mkdir -p custom/ap2
cp -fp configure/ap2/configure.php5 custom/ap2/configure.php5

Make changes to custom/ap2/configure.php5
Add the following lines

--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-mysql=mysqlnd \
--with-mysql-sock=/var/lib/mysql/mysql.sock \

Then rebuild PHP via custombuild

./build php n
于 2015-09-24T12:14:39.987 回答