discuz搬家升级转码等可能出现用户名前台还是旧名称的问题
第一种方法:UC后台编辑用户,修改用户名。这样如果“通信成功”且“通知成功”的话,新用户名可以登录,但是群组的用户与帖子的作者与最后更新还是旧用户名。此方法能用不是太完美。
第二种方法:直接操作数据,此方法效果较好,需要一定的数据库操作技术。后台开启允许执行数据库,用下面语句执行下,大概需要的语句有
- update `pre_common_member` set `username`=REPLACE(`username`, '原名', '新名');
- update `pre_ucenter_members` set `username`=REPLACE(`username`, '原名', '新名');
- update `pre_forum_groupuser` set `username`=REPLACE(`username`, '原名', '新名');
- update `pre_forum_post` set `author`=REPLACE(`author`, '原名', '新名');
- update `pre_forum_thread` set `author`=REPLACE(`author`, '原名', '新名');
- update `pre_forum_thread` set `lastposter`=REPLACE(`lastposter`, '原名', '新名');
- update `pre_home_feed` set `username`=REPLACE(`username`, '原名', '新名');
复制代码
此方法已经很完美了,但不排除数据库含用户名的表全部都在,如果发现还有表含有用户名的改下表名称加进去,注意区分username,author和lastposter即可。
|