阿里云虚拟空间不能更新的解决办法

由于阿里云虚拟空间,虽支持curl但不支持https协议,因此造成无法更新;手动修改:\nzcms\finephp\base\base.func.php搜索 fetch_url约第336行将整个fetch_url函数,用以下替换;function fetch_url($url, $timeout = 30) { &nbs...

由于阿里云虚拟空间,虽支持curl但不支持https协议,因此造成无法更新;

手动修改:\nzcms\finephp\base\base.func.php

搜索  fetch_url 约第336行

将整个fetch_url函数,用以下替换;

function fetch_url($url, $timeout = 30) {
    $opts = array ('http'=>array('method'=>'GET', 'timeout'=>$timeout));
    $context = stream_context_create($opts);
    $html = file_get_contents($url, false, $context);
    return $html;
}


评论0

首页 导航 会员
邮箱 TOP