找回密码
 注册
查看: 3470|回复: 7
收起左侧

6.0注册用户名长度修改方法

[复制链接]

5312

主题

8317

帖子

1万

积分

管理员

出售国内外虚拟空间

Rank: 10Rank: 10Rank: 10

积分
14660
帖子
8317
精华
67
体力
14660 点
蓝豆
2391 点
注册时间
2007-6-8

终身成就奖LY官方团队会员身份ID卡

发表于 2008-3-7 16:41:27 | 显示全部楼层 |阅读模式
以限制用户名长度为2-8字符之间为例:

论坛根目录下的 register.php中查找
引用:
if(strlen($username) < 3) {
showmessage(\'profile_username_tooshort\');
}
if(strlen($username) > 15) {
showmessage(\'profile_username_toolong\');
}
改为:
引用:
if(strlen($username) < 2) {
showmessage(\'profile_username_tooshort\');
}
if(strlen($username) > 8) {
showmessage(\'profile_username_toolong\');
}
修改模版文件 register.htm查找
引用:
if(unlen < 3 || unlen > 15) {
warning(cu, unlen < 2 ? profile_username_tooshort : profile_username_toolong);
改为:
引用:
if(unlen < 2 || unlen > 8) {
warning(cu, unlen < 2 ? profile_username_tooshort : profile_username_toolong);
查找:
引用:
15\" onBlur=\"checkusername()\" tabindex=\"3\" />
改为:
引用:
8\" onBlur=\"checkusername()\" tabindex=\"3\" />
修改模版文件 templates.lang.php 查找
引用:
\'register_profile_username_toolong\' => \'对不起,您的用户名超过 15 个字符,请输入一个较短的用户名。\',
\'register_profile_profile_username_tooshort\' => \'对不起,您输入的用户名小于3个字符, 请输入一个较长的用户名。\',
改为:
引用:
\'register_profile_username_toolong\' => \'对不起,您的用户名超过 8 个字符,请输入一个较短的用户名。\',
\'register_profile_profile_username_tooshort\' => \'对不起,您输入的用户名小于2个字符, 请输入一个较长的用户名。\',
出售国内或美国高性能虚拟空间,高速VPS以及服务器! 同时承接各种类型的网站制作,网站维护,支付宝交易安全放心!    联系QQ:6102031

5312

主题

8317

帖子

1万

积分

管理员

出售国内外虚拟空间

Rank: 10Rank: 10Rank: 10

积分
14660
帖子
8317
精华
67
体力
14660 点
蓝豆
2391 点
注册时间
2007-6-8

终身成就奖LY官方团队会员身份ID卡

 楼主| 发表于 2008-3-7 16:41:58 | 显示全部楼层
特别提示:
  此方法只适用于用户名上限为15的要求。
  要修改上限大于15须修改数据库!
出售国内或美国高性能虚拟空间,高速VPS以及服务器! 同时承接各种类型的网站制作,网站维护,支付宝交易安全放心!    联系QQ:6102031
懒得打字嘛,点击右侧快捷回复
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

网站公告上一条 /2 下一条

GMT+8, 2024-5-1 18:20 , Processed in 0.093750 second(s), 24 queries , Gzip On.

© 2006-2022 Powered by Discuz! X3.4

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