RSSリーダー作成の時にちょっとはまったのでメモ。
$options = array(
'timeout' => '10', // タイムアウトの秒数指定
);
$req = new HTTP_Request('', $options);
上記から下記へ修正する事により対応可能となった。
$options = array(
'timeout' => '10', // タイムアウトの秒数指定
'allowRedirects' => true,
'maxRedirects' => 2,
);
$req = new HTTP_Request('', $options);
0 件のコメント:
コメントを投稿