您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop商城实现用户名和邮箱都能登陆的方法
路留时2023-12-12 18:08:41ecshop商城教程已有人查阅
导读修改方法:/includes/modules/integrates/integrate.php文件约145- 162行的用户登入函数.如下
修改方法:/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;
}
}
本文标签:
很赞哦! ()
相关文章
- ecshop商城首页增加一个商品浏览排行榜的实现方法
- ecshop商城怎么增加新独立页面
- ecshop商城安全优化ecshop防注入屏蔽SQL提示实例
- ecshop商城让所有页面都显示新文章提高SEO优化的实现方法
- ecshop商城SEO优化,ecshop预防死链站内页面301跳转写法
- ecshop商城后台订单选择加入商品时提示库存不足的修改方法
- ecshop商城商品搜索结果页显示商品货号的方法
- ecshop商城任意页面添加调用显示文章代码实例
- ecshop商城调用指定分类新品商品/热门商品/推荐商品可设置商品数量
- ecshop商城首页显示积分商品调用积分商品的代码示例
- ecshop商城数据备份搬家恢复数据步骤教程
- ecshop商城杂志管理设置说明介绍
随机图文
-
ecshop设置默认配送方式和支付方式的方法
ECSHOP商城做好以后,发现在购买流程中,有一点不人 化。本来商城就只有一种快递方式,也只有2种支付方式,可是到了下订单的页面才发现。 -
ecshop模板修改删除商品名称后面省略号的方法
商品标题超过后台设置的显示字数时,会显示省略号。请问怎样修改,才会不显示省略号呢? -
ecshop购物流程不同会员等级才可以
“ ”是一个好东西,如果你的网店可以“ ”的话,无疑会相对更吸引顾客来光顾,但是“ ”对订单管理也有弊端,比方说恶意下单,你还得电话确认下。 -
ecshop商城之transport与jquery冲突之处理方法
众所周知:ecshop的transport.js文件和Jquery是冲突的,两个文件不能同时调用,现给出以下解决方案:
留言与评论 (共有 条评论) |