首页 > 网站 > 建站经验 > 正文

Ecshop二次改造实现用户名或Email都能登陆

2024-04-25 20:42:58
字体:
来源:转载
供稿:网友

相信很多使用ECSHOP的朋友都想要这个功能,网上也有很多类似的修改教程。

下面说一下我的方法,也比较简单,已在ECSHOP2.7.2版测试通过。

打开 /includes/modules/integrates/integrate.php 文件。

找到

if ($this->check_user($username, $password) > 0)

在它上面添加下面代码段

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;

}

是不是挺简单的。

其他版本的ECSHOP,站长没有亲自测试,相信也可以用此方法来解决。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表