当前位置: 首页 > 站长资讯 > 正文页面

Discuz! 与UCenter通信失败常见症状及解决方法

应用与UCenter通信失败是Discuz站长们经常遇见的问题之一,通信失败会造成的后果也很多,如上传头像时报错、新会员无法注册、登录密码不正确等一系列的问题,下面把 UCenter 通信失败的解决方法总结并与大家分享。hEp网站目录_网站网址收录与提交入口

UCenter通信异常,一般有下面的一些症状:hEp网站目录_网站网址收录与提交入口

1、头像无法上传出现了错误提示:access denied for agent changed;hEp网站目录_网站网址收录与提交入口

2、网站登录提示密码不正确或者没响应;hEp网站目录_网站网址收录与提交入口

3、会员无法注册;hEp网站目录_网站网址收录与提交入口

4、各应用不能同步登录和退出;hEp网站目录_网站网址收录与提交入口

5、UCenter后台提示通信失败;hEp网站目录_网站网址收录与提交入口

6、头像显示红X;hEp网站目录_网站网址收录与提交入口

7、登录站点后台 => 点击 UCenter 显示 404 或者其它错误。hEp网站目录_网站网址收录与提交入口

还有很多各种各样的情况,这里就不一一列举了。hEp网站目录_网站网址收录与提交入口

解决方法总结如下:hEp网站目录_网站网址收录与提交入口

1、检查站点配置文件中的 UC_APPID 与 UCenter 中的应用ID是否一致hEp网站目录_网站网址收录与提交入口

以Discuz! X2.5为例,配置文件的目录为:./config/config_ucenter.php 找到如下图所示的位置hEp网站目录_网站网址收录与提交入口


hEp网站目录_网站网址收录与提交入口

这里的值必须与 UCenter 后台中应用ID的值保持一致,如下图所示。hEp网站目录_网站网址收录与提交入口


hEp网站目录_网站网址收录与提交入口

2、应用的主URL地址即站点地址必须与UCenter后台的应用地址相同比如站点的访问地址为:http: //down.admin5.com/info,那么UCenter后台该应用的地址也必须是http: //down.admin5.com/info。hEp网站目录_网站网址收录与提交入口


hEp网站目录_网站网址收录与提交入口

3、配置文件中的通信密钥必须与 UCenter 后台的通信密钥保持一致配置文件的通信密钥可以在./config/config_ucenter.php 中看到。hEp网站目录_网站网址收录与提交入口

hEp网站目录_网站网址收录与提交入口

这里的密钥必须和 UCenter 后台的保持一致。hEp网站目录_网站网址收录与提交入口


hEp网站目录_网站网址收录与提交入口

4、UCenter IP 地址要与服务器的 ip 地址相同可以在配置文件中修改 IP 地址,如图hEp网站目录_网站网址收录与提交入口


hEp网站目录_网站网址收录与提交入口

同理,UCenter 后台的应用 IP 地址也要和配置文件中的一致。应用管理中,编辑站点应用即可看到如下图所示:hEp网站目录_网站网址收录与提交入口


hEp网站目录_网站网址收录与提交入口

5、检查配置文件中的表前缀是否填写正确位置在./config/config_ucenter.php 中hEp网站目录_网站网址收录与提交入口


hEp网站目录_网站网址收录与提交入口

6、fsockopen函数被禁用,检查 php 环境,是否禁用了 fsockopen 函数,可以通过 php.ini 来查看该函数的情况,在这个文件中查找hEp网站目录_网站网址收录与提交入口

allow_url_fopen 将其改为 allow_url_fopen = OnhEp网站目录_网站网址收录与提交入口

7、应用域名301重定向的情况。301重定向可以用fsockopen函数进行测试:用下面的代码hEp网站目录_网站网址收录与提交入口

<?phphEp网站目录_网站网址收录与提交入口

$fp = fsockopen("[url=http://www.jmsbang.com]www.jmsbang.com[/url]", 80, $errno, $errstr, 30);hEp网站目录_网站网址收录与提交入口

if (!$fp) {hEp网站目录_网站网址收录与提交入口

echo "$errstr ($errno)hEp网站目录_网站网址收录与提交入口

/n";hEp网站目录_网站网址收录与提交入口

} else {hEp网站目录_网站网址收录与提交入口

$out = "GET / HTTP/1.1/r/n";hEp网站目录_网站网址收录与提交入口

$out .= "Host: [url=http://www.jmsbang.com/r/n]www.jmsbang.com/r/n[/url]";hEp网站目录_网站网址收录与提交入口

$out .= "Connection: Close/r/n/r/n";hEp网站目录_网站网址收录与提交入口

fwrite($fp, $out);hEp网站目录_网站网址收录与提交入口

while (!feof($fp)) {hEp网站目录_网站网址收录与提交入口

echo fgets($fp, 128);hEp网站目录_网站网址收录与提交入口

}hEp网站目录_网站网址收录与提交入口

fclose($fp);hEp网站目录_网站网址收录与提交入口

}hEp网站目录_网站网址收录与提交入口

?>hEp网站目录_网站网址收录与提交入口

将对应的域名更改为 UCenter 应用中的域名,然后访问此测试脚本,返回的内容有 301 permanently 内容,通信也会失败。您只要取消重定向即可,一般是 301 跳转规则有问题。hEp网站目录_网站网址收录与提交入口

通过以上方法,便可以解决通信失败的问题。通常只要目录权限正确,配置文件和后台设置按照上面方法操作通信就不会出现问题了。hEp网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章