WordPress SSL環境下でのネットワークWordPressでエラーが出る場合の解決方法
環境
CentOS 7.9
Wordpress
エラー現象
error setting certificate verify locations: CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none
修正ファイル
/wp-admin/network/upgrade.php
対策
修正前
$response = wp_remote_get( $upgrade_url, array( 'timeout’ => 120, 'httpversion’ => '1.1’ ) );
修正後
$response = wp_remote_get( $upgrade_url, array( 'timeout’ => 120, 'httpversion’ => '1.1’, 'sslverify’ => false ) );