azure mysql 配置,php
我们在云服务上主要.NET解决方案的子文件夹中运行Wordpress.我们已经将MySQL从CloudDB移到了Azure MySQL,但是只有将“强制SSL连接”设置为禁用时,它才会连接.
WordPress wp-config.php具有以下内容
define('DB_SSL', true);
我认为问题在于我们需要通过证书,但是我不清楚我们如何在Wordpress中设置证书,以便通过SSL连接时可以通过证书.
解决方法:
这是我所做的:
> Obtain SSL certificate并将证书文件保存到我的Wordpress项目的根目录.
>将以下内容添加到wp-config.php中:
define('DB_SSL', true);
>将此添加到我的wp-includes / wp-db.php中的函数db_connect()中.必须在mysqli_real_connect()之前调用它:
// Just add this line
mysqli_ssl_set($this->dbh, NULL, NULL, ABSPATH . 'BaltimoreCyberTrustRoot.crt.pem', NULL, NULL);
if ( WP_DEBUG ) {
mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags );
} else {
@mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags );
}
该解决方案似乎有点肮脏,但对我有用.
标签:azure,ssl,wordpress,mysql,php
来源: .html
azure mysql 配置,php
我们在云服务上主要.NET解决方案的子文件夹中运行Wordpress.我们已经将MySQL从CloudDB移到了Azure MySQL,但是只有将“强制SSL连接”设置为禁用时,它才会连接.
WordPress wp-config.php具有以下内容
define('DB_SSL', true);
我认为问题在于我们需要通过证书,但是我不清楚我们如何在Wordpress中设置证书,以便通过SSL连接时可以通过证书.
解决方法:
这是我所做的:
> Obtain SSL certificate并将证书文件保存到我的Wordpress项目的根目录.
>将以下内容添加到wp-config.php中:
define('DB_SSL', true);
>将此添加到我的wp-includes / wp-db.php中的函数db_connect()中.必须在mysqli_real_connect()之前调用它:
// Just add this line
mysqli_ssl_set($this->dbh, NULL, NULL, ABSPATH . 'BaltimoreCyberTrustRoot.crt.pem', NULL, NULL);
if ( WP_DEBUG ) {
mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags );
} else {
@mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags );
}
该解决方案似乎有点肮脏,但对我有用.
标签:azure,ssl,wordpress,mysql,php
来源: .html