Ecshop二次开发 实现用户名或Email都能登陆

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

Ecshop二次开发 实现用户名或Email都能登陆ECSHOP2.7.2版测试通过。

打开 /includes/modules/integrates/integrate.php 文件。
找到
  1. if ($this->check_user($username, $password) > 0)
复制代码
在它上面添加下面代码段

  1. if(is_email($username))
  2. {
  3. $sql = "select ".$this->field_name." from ".$this->table($this->user_table)." where ".$this->field_email."='".$username."'";
  4. $username = $this->db->getOne($sq);
  5. if(!$username) return false;
  6. }
复制代码


Ecshop二次开发实现用户名或Email都能登陆.zip (5.56 KB)
技术支持QQ1055335110
演示 www.82203.com

回答:
这个是很老的技术把。论坛早就有人发过了

支持一下。。。。
www.wanzongmall.com