[其他] discuz开启https后小云app无法上传头像解决方法

[复制链接]
韩凯 发表于 2018-3-16 23:15:46 | 显示全部楼层 |阅读模式
在discuz目录里找到uc_client/client.php
1.235行
$path = $matches['path'] ? $matches['path'].($matches['query'] ? '?'.$matches['query'] : '') : '/';
下面添加以下代码:
$matches['port'] = !empty($matches['port'])&&$scheme=='https' ? $matches['port'] : 443;
2.261行
if(!$fp = @fsocketopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout)) {
这一行修改为:
if($port=='443'){
        $temp = 'ssl://';
}else{
        $temp = 'http://';
}
if(!$fp = @fsocketopen($temp.($ip ? $ip : $host), $port, $errno, $errstr, $timeout)) {

从前喜欢“一个人”,现在喜欢“一个人”
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 我要加入

本版积分规则

快速回复 返回顶部 返回列表