首页 > CMS > 织梦DEDE > 正文

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

2024-07-12 09:06:27
字体:
来源:转载
供稿:网友
 原因 :新的member表中没有uprank和upmoney字段。 
 
  用记事本打开uploads/member/index_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';");
  保存,再登陆看看是不是正常了呢。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表