Drupalメモ

提供:Software Development Memo
ナビゲーションに移動 検索に移動


Proxyを使用して更新確認を行う

「includes/common.inc」を以下のように変更します。(バージョン6.15を使用)

457,460c457
<       // --- mod start
<       //$fp = @fsockopen($uri['host'], $port, $errno, $errstr, 15);
<       $fp = @fsockopen('<WWW.XXX.YYY.ZZZ>', '<PORT>'); // 第1引数:ホスト名, 第2引数:ポート番号
<       // --- mod end
---
>       $fp = @fsockopen($uri['host'], $port, $errno, $errstr, 15);
533,537c530,531
<   // --- mod start
<   // $request = $method .' '. $path ." HTTP/1.0\r\n";
<   // $request .= implode("\r\n", $defaults);
<   $request = "$method ".$uri['scheme']."://".$uri['host'].$path." HTTP/1.1\r\n";
<   // --- mod end
---
>   $request = $method .' '. $path ." HTTP/1.0\r\n";
>   $request .= implode("\r\n", $defaults);


更新履歴