程序员人生 网站导航

修正Dedecms V5.5 0814版UC登陆问题

栏目:DedeCMS时间:2014-04-18 19:36:31

  原因 :新的member表中没有uprank和upmoney字段。

  用记事本打开uploadsmemberindex_do.php文件,找到280行:

  $res = $dsql->ExecuteNoneQuery("INSERT INTO dede_member SET `mtype`='个人',`userid`='$username',`pwd`='$password',`uname`='$username',`sex`='男' ,`rank`='10',`uprank`='0',`money`='$money', `upmoney`='0', `email`='$email', `scores`='$scores', `matt`='0', `face`='',`safequestion`='0',`safeanswer`='', `jointime`='$jointime',`joinip`='$joinip',`logintime`='$logintime',`loginip`='$loginip';");

  修改为:

  $res = $dsql->ExecuteNoneQuery("INSERT INTO dede_member SET `mtype`='个人',`userid`='$username',`pwd`='$password',`uname`='$username',`sex`='男' ,`rank`='10',`money`='$money',`email`='$email', `scores`='$scores', `matt`='0', `face`='',`safequestion`='0',`safeanswer`='', `jointime`='$jointime',`joinip`='$joinip',`logintime`='$logintime',`loginip`='$loginip';");

  保存,再登陆看看是不是正常了呢。

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐