逐梦论坛's Archiver

shillan 发表于 2013-7-20 13:39

Ucenter用户自动激活Discuz论坛用户

  最近在做齐博CMS和Discuz论坛的整合,遇到一个问题,在CMS中用户注册以后,在论坛中,用户首次登陆会有一个“激活”的提示。我的想法是只要在CMS注册了,并登陆了,跳转到论坛的时候就自动登陆了,自动激活,如果在论坛登陆,再跳转到CMS,也是自动登陆的。现在的情况是,首次登陆会有用户激活的提示,并且,用户没有激活的情况下,用户在CMS登陆后,跳转到论坛,默认并不是自动登陆的状态。
  造成需要激活才能登陆的原因是:论坛用户数据没有刚刚在用户中心注册的用户数据,所以需要点击“激活”把用户中心的数据写入论坛的用户数据表中。
  知道原因就好解决了:在登录成功后,判断该用户的数据是否存在论坛用户数据表中,不存在就把该用户的数据写入论坛的用户数据表中,这样就不会出现激活页面了,直接登陆成功。

方法:
在class_member.php中的(约在91行):[code]$result['ucresult']['uid'];[/code]后面添加如下代码:[code]//begin 2011-10-13

//判断是否登陆成功(登陆成功会返回:用户id、用户名、密码等信息):

$user_t=uc_user_login($result["ucresult"]["username"],

$result["ucresult"]["password"]);

//查询论坛中是否存在该账号

$user_inf = DB::fetch_first(“SELECT *

FROM ”.DB::table(‘common_member’).” WHERE uid=”.$uid);

//如果该账号不存在论坛用户表中且登陆成功,则将该用户的信息写入论坛

用户数据中(即实现不用点击激活才能使用的缺陷)。

if(!$user_inf["uid"] AND $user_t[0]>0){

DB::insert(‘common_member’, array(

‘uid’ => $uid,

‘username’ => $result['ucresult']['username'],

‘password’ => md5(random(10)),

‘email’ => $result['ucresult']['email'],

‘adminid’ => 0,

‘groupid’ => $this->setting['regverify'] ? 8 :

$this->setting['newusergroupid'],

‘regdate’ => TIMESTAMP,

‘credits’ => $init_arr[0],

‘timeoffset’ => 9999

));

DB::insert(‘common_member_status’, array(

‘uid’ => $uid,

‘regip’ => $_G['clientip'],

‘lastip’ => $_G['clientip'],

‘lastvisit’ => TIMESTAMP,

‘lastactivity’ => TIMESTAMP,

‘lastpost’ => 0,

‘lastsendmail’ => 0

));

DB::insert(‘common_member_profile’, array(‘uid’ => $uid));

DB::insert(‘common_member_field_forum’, array(‘uid’ => $uid));

DB::insert(‘common_member_field_home’, array(‘uid’ => $uid));

DB::insert(‘common_member_count’, array(

‘uid’ => $uid,

‘extcredits1′ => $init_arr[1],

‘extcredits2′ => $init_arr[2],

‘extcredits3′ => $init_arr[3],

‘extcredits4′ => $init_arr[4],

‘extcredits5′ => $init_arr[5],

‘extcredits6′ => $init_arr[6],

‘extcredits7′ => $init_arr[7],

‘extcredits8′ => $init_arr[8]

));

manyoulog(‘user’, $uid, ’add’);

$result['member'] = DB::fetch_first(“SELECT *

FROM ”.DB::table(‘common_member’).” WHERE uid=’$uid’”);

$result['status'] = 1;

}

//end[/code]

cdzxp 发表于 2014-7-18 11:22

我又回复了











bjcars.net

cyevc 发表于 2014-8-24 08:02

还没有机会尝试一下 帮顶











bjcars.net

页: [1]

Powered by Discuz! Archiver 7.2  © 2001-2009 Comsenz Inc.