ecshop教程

ECSHOP首页要求会员用户先登录成功后才干跳转到首页

ecshop教程 51源码 2022-11-28 人阅读

我们希望访问ECSHOP网站首页的时候,要求必须登录,登录成功后才能正常显示首页。

第一步:

打开index.php文件

查找:

1require(dirname(__FILE__) . '/includes/init.php');

在下面添加一行:

1if($_SESSION['user_id']<1){Header("Location: user.php");}

第二步:

打开 user.php

查找:约300行

show_message($_LANG['login_success'] . $ucdata array($_LANG['back_up_page'], $_LANG['profile_lnk']), array($back_act,'user.php'), 'info');


修改为:

show_message($_LANG['login_success'] . $ucdata array('返回网站首页'$_LANG['profile_lnk']), array('index.php','user.php'), 'info');


大功告成@!

版权声明:文章搜集于网络,如有侵权请联系本站,转载请说明出处:https://www.51yma.cn/jiaocheng/ecshop/784.html
文章来源: