您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop邮箱email用户名都可以登陆的实现方法
争赵2023-12-11 16:59:11ecshop商城教程已有人查阅
导读打开 /includes/modules/integrates/integrate.php 文件;function login($username, $password, $remember = null)
打开 /includes/modules/integrates/integrate.php 文件
找到
找到
function login($username, $password, $remember = null)
{
if ($this->check_user($username, $password) > 0)
改为
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;
//echo $sql;exit;
}
if ($this->check_user($username, $password) > 0)
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop浏览记录商品图片标题宽带长度怎么修改
ecshop里面有浏览历史记录,在ecshop二次开发的时候,常常对这个地方进行调整.到不是说修改浏览历史记录的原理。而是修改ecshop浏览历史记录的数据显示方式.很简单 -
ecshop购物车结算页面显示商品品牌的方法
1、先打开 includes/lib_order.php 文件(建议使用editplus)2、下面这一步千万要认真,不能马虎,还是在includes/lib_order.php 文件中查找先找到 -
ecshop商品页显示供应商/供货商名称的方法
好久没写文章了,隐约记得前几天有人问到这个问题:【如何在ecshop商品详情页面显示该商品的供货商?】 -
ecshop文章日期文章时间修改和添加文章时间日期选择方法
代码号讲解下ecshop文章日期时间修改和选择,大家都知道ECSHOP商城添加文章时候没有文章日期和文章时间选择,同时也不能修改文章日期和文章时间代码号今天教大家
留言与评论 (共有 条评论) |