Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[修改] https uc通信失败的解决方法

[复制链接]
carlkyo 发表于 2015-10-7 13:11:04 | 显示全部楼层 |阅读模式
修改 /usr/local/nginx/html/uc_server/ model/misc.php 文件,在     //error_log("[uc_server]\r\nurl: $url\r\npost: $post\r\n\r\n", 3, 'c:/log/php_fopen.txt'); 下面添加如下内容:
  1.       if(substr($url,0,5)=='https'){
  2.                             $ch = curl_init($url);
  3.                             curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  4.                             if($post){
  5.                                     curl_setopt($ch, CURLOPT_POST, 1);
  6.                                     curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
  7.                             }
  8.                             if($cookie){
  9.                                     curl_setopt($ch, CURLOPT_COOKIE, $cookie);
  10.                             }
  11.                             curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  12.                             return curl_exec($ch);
  13.                     }
复制代码

保存退出!再次刷新Ucenter,通讯成功!

shlore 发表于 2015-10-7 21:50:02 | 显示全部楼层
感谢楼主分享 不知道nginx+apache的情况 apache始终判断不出https 怎么办
取端口也取出80 明明是443
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-16 17:27 , Processed in 0.031986 second(s), 6 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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