そこで、エンコードの問題なのか、ファイルのパーミッションの問題なのか、サポートされていない機能なのかを疑って調べたところ、Wanwang の L1 ホストは fsockopen をサポートしておらず、uc_client/client.php ファイルの uc_fopen に問題があることがわかりました。コードは次のとおりです:
コードをコピーします コードは次のとおりです:
function uc_fopen($url, $制限 = 0、$post = ''、$cookie = ''、$bysocket = FALSE、$ip = ''、$timeout = 15、$block = TRUE) {
$return = ''; $matches = parse_url($ url);
!isset($matches['host']) && $matches['host'] = ''; $matches['path' ] = '';
!isset($matches['query']) && $matches['query'] = ''; ) && $matches['port'] = '';
$host = $matches['host'];
$path = $matches['path'] $matches['path'] ? $matches['query' ] ? '?'.$matches['query'] : '') : '/';
$port = !empty($matches['port']) ?ポート'] : 80;
if($post) {
$out = "POST $path HTTP/1.0rn"
$out .= "Accept: */*rn"; //$out .= "リファラー: $boardurlrn";
$out .= "Accept-Language: zh-cnrn";
$out .= "Content-Type: application/x-www-form- urlencodedrn";
$out .= "ユーザーエージェント: $_SERVER[HTTP_USER_AGENT]rn";
$out .= "ホスト: $hostrn";
$out .= 'コンテンツの長さ: ' .strlen($post) ."rn";
$out .= "接続: 閉じる";
$out .= "キャッシュ制御: no-cachern"; : $cookiernrn";
$out .= $post;
} else {
$out = "GET $path HTTP/1.0rn";
$out .= "Accept: */* rn";
//$out .= "リファラー: $boardurlrn";
$out .= "Accept-Language: zh-cnrn";
$out .= "ユーザーエージェント: $_SERVER [HTTP_USER_AGENT]rn";
$out .= "ホスト: $hostrn";
$out .= "接続: Closern";
$out .= "Cookie: $cookiernrn";
}
$fp = @fsockopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout);
if(!$fp) {
return '' ;//note $errstr : $errno rn
} else {
stream_set_blocking($fp, $block)
stream_set_timeout($fp, $timeout); out);
$status = stream_get_meta_data($fp);
if(!$status['timed_out']) {
while (!feof($fp)) {
if(($ header = @fgets($ fp)) && ($header == "rn" || $header == "n")) {
break
}
}
$stop = false ;
while( !feof($fp) && !$stop) {
$data = fread($fp, ($limit == 0 || $limit > 8192 ? 8192 : $limit));
$return . = $data;
if($limit) {
$limit -= strlen($data);
$stop = $limit
}
}
}
@fclose($fp);
return $return;
}
}
fsockopen 関数は使用できないため、幸いなことに、curl はサポートされており、file_get_contents もサポートしています。検討した結果、uc_fopen 関数を次のように変更しました。 code
コードは次のとおりです:
curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']) ; if($post) { curl_setopt($curl, CURLOPT_POST, 1); , $post); }
if($cookie) {curl_setopt($curl, CURLOPT_COOKIE, $cookie)
}
curl_setopt($curl, CURLOPT_TIMEOUT, $timeout);
curl_setopt($curl, CURLOPT_HEADER, 0);
curl_setopt( $curl, CURLOPT_RETURNTRANSFER, 1);
$return =curl_exec($curl);
if (curl_errno($curl))
echo '
エラー: b>
'.curl_error($curl);
curl_close($curl); return $return;
}
ということで、modoer の uc_client/client.php と ucome の uc_cilent/client.php がこのように uc_open 関数を変更しました。インターネット上に情報がたくさんあるので支障はありませんが、この変更が他のものに影響を与えるかどうかはまだテストされていません。 。 。 。