【hq0377.com美化发布】ecshop2.7.2中如何实现用户名和邮箱都能登陆

2016-07-07 15:00 来源:www.chinab4c.com 作者:ecshop专家

亲测可用,完善后发给大家。
步骤一:
修改方法:/includes/modules/integrates/integrate.php文件约145– 162行的用户登入函数.如下

function login($username, $password, $remember = null)
{
if ($this->check_user($username, $password) > 0)
{
if ($this->need_sync)
{
$this->sync($username,$password);
}
$this->set_session($username);
$this->set_cookie($username, $remember);

return true;
}
else
{
return false;
}
}

修改为:

function login($username, $password, $remember = null)
{

if(is_email($username))
{
$sql = “select “.$this->field_name.” from “.$this->table($this->user_table).” where “.$this->field_email.”=’”.$username.”‘”;
$username = $this->db->getOne($sql);
if(!$username) return false;
}
if ($this->check_user($username, $password) > 0)
{
if ($this->need_sync)
{
$this->sync($username,$password);
}
$this->set_session($username);
$this->set_cookie($username, $remember);

return true;
}
else
{
return false;
}
}
步骤二:
进入后台→语言项编辑→选择“user.php会员中心语言包”→搜索“用户名”
在搜索结果中找到“$_LANG['label_username']”改掉后面的汉字为“用户名/注册邮箱”


南阳电脑维修完善发布

回答:
如果你整合UC你去测试下。肯定就失效了。还是没有找出最有效果的解决办法

整合UC后这个功能无效,求解