登陆密码不能为8

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家

我想问下 这个密码长度在哪里改???怎么修改 有谁知道

回答:
有谁知道啊,望告知

这个还是长点的好啊,为了网站安全

install\templates\setting.php
修改
if (!(password.length >= 8 && /\d+/.test(password) && /[a-zA-Z]+/.test(password)))
{
$("js-install-at-once").setAttribute("disabled", "true");
if (!(password.length >= 8))


还有一个地方 confirm_password.length >= 8也改为5(暂时还不知作用因为有一句 if (password==confirm_password)所以也给他改了

install\languages\zh_cn.php
$_LANG['js_languages']['password_short'] = '密码长度不能小于8';