登陆问题

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

将ec的登录改成用邮箱登录应该改什么地方的代码?

回答:
等待回答

user.php里面的登陆包...

找到user.php里面的login($username,$password) 了,但是这个函数被封装到哪了,小弟新手,大哥再指点下啊...

搜索 login

请您仔细检查您是否充值服务器错误或者是否转化为游戏时间然后关闭运行文件重新打开实在不行请致电人工服务台在这一方面路盛大做的不行╮(╯▽╰)╭

跑题了吧~~~

和大家分享一下,改动后邮箱和用户名都可以登录

改动程序: /includes/modules/integrates/integrate.php
改动代码:145–162行的用户登陆函数.如下

function login($username, $password)
{
if ($this->check_user($username, $password) > 0)
{
if ($this->need_sync)
{
$this->sync($username,$password);
}
$this->set_session($username);
$this->set_cookie($username);
return true;
}
else
{
return false;
}
}
改为:function login($username, $password)
{
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;
//echo $sql;exit;
}
if ($this->check_user($username, $password) > 0)
{
if ($this->need_sync)
{
$this->sync($username,$password);
}
$this->set_session($username);
$this->set_cookie($username);
return true;
}
else
{
return false;
}
}