|
|
在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`, '原名', '新名');
复制代码 |
|