ワードプレスのインストールで特定のタスクを実行するために xml-rpc を使用しようとしています。
これは私が使用しているものです
include_once '/local/www/xxxxxxxx/wp-includes/class-IXR.php';
$objClient = new IXR_Client('http://xxxxxxxx/xmlrpc.php');
objClient で print_r を実行すると、次のようになります
IXR_Client Object
(
[server] => xxxxxxxx
[port] => 80
[path] => /library/xmlrpc.php
[useragent] => The Incutio XML-RPC PHP Library
[response] =>
[message] =>
[debug] =>
[timeout] => 15
[headers] => Array
(
)
[error] =>
)
私が理解できないのは、タイムアウト時の15が何を意味し、なぜタイムアウトになるのかです。何か提案はありますか?