UCenter同步登录失败

最近做一个官网和Discuz论坛的同步登录,遇到一个UCenter同步登录失败的问题。

测试发现能获取到用户的$uid,但是登录还是失败,原因是cookie发送失败。

造成原因是我的代码采用的php和html混排,所以setcookie()很容易出问题。

解决方法:

  1. 在开头加ob_start(),末尾加ob_end_flush();

$ucsynlogin = uc_user_synlogin($uid);

echo $ucsynlogin;

ob_end_flush();

2.登录处理单独交给一个页面,不要和html页面混编


你可能感兴趣的:(UCenter同步登录失败)