本帖最后由 ruziniu05100 于 2013-8-26 22:26 编辑
第一种方法:UC后台编辑用户,修改用户名。这样如果“通信成功”且“通知成功”的话,新用户名可以登录,但是群组的用户与帖子的作者与最后更新还是旧用户名。此方法能用不是太完美。
第二种方法:直接操作数据,此方法效果较好,需要一定的数据库操作技术。大概需要的语句有- <font size="3">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`, '原名', '新名');
复制代码 如有遗漏,再修改其他的。
|