设为首页收藏本站

IITT网络服务中心

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 3616|回复: 0
打印 上一主题 下一主题

[帮助文档] DISCUZX3.2 修改注册用户名长度解决方案

[复制链接]

453

主题

399

帖子

1764

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
1764
跳转到指定楼层
楼主
发表于 2018-3-22 12:54:37 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
#——请一定要备份!!
1./source/class/目录下的class_member.php文件中, 找到如下代码:
  1.         if($usernamelen < 3) {
  2.                                         showmessage('profile_username_tooshort');
  3.                                 } elseif($usernamelen > 15) {
  4.                                         showmessage('profile_username_toolong');
  5.                                 }
复制代码

修改为:
  1.   if($usernamelen < 3) {
  2.                                         showmessage('profile_username_tooshort');
  3.                                 } elseif($usernamelen > 20) {
  4.                                         showmessage('profile_username_toolong');
  5.                                 }
复制代码

2./source/language/目录下的lang_message.php文件中, 找到如下代码:
  1. 'profile_username_toolong' => '抱歉,您的用户名超过 15 个字符,请输入一个较短的用户名',
复制代码
修改为:

  1. 'profile_username_toolong' => '抱歉,您的用户名超过 20个字符,请输入一个较短的用户名',
复制代码

3./source/language/mobile/目录下的lang_template.php文件中, 找到如下代码:
  1. 'reg_username' => '用户名必须为大于3位小于15位',
复制代码

修改为:

  1. 'reg_username' => '用户名必须为大于3位小于20位',
复制代码

4.站/source/module/forum/Forum_ajax.php 文件中, 找到如下代码:
  1. if($usernamelen < 3) {
  2.                 showmessage('profile_username_tooshort', '', array(), array('handle' => false));
  3.         } elseif($usernamelen > 15) {
  4.                 showmessage('profile_username_toolong', '', array(), array('handle' => false));
  5.         }
复制代码

修改为:
  1. if($usernamelen < 3) {
  2.                 showmessage('profile_username_tooshort', '', array(), array('handle' => false));
  3.         } elseif($usernamelen > 20) {
  4.                 showmessage('profile_username_toolong', '', array(), array('handle' => false));
  5.         }
复制代码

5.替换同名文件,更新缓存,注册用户名最大 就是10个中文 20个字符了


请一定要备份!!
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|IITT网络服务中心    

GMT+8, 2024-5-3 14:53 , Processed in 0.068784 second(s), 24 queries .

Powered by Discuz! X3

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表