广州传奇网络

地址:广州市天河区东圃大马路富华楼C座

电话:13808825895

邮箱:gz020wbs@163.com

QQ:1564443073

网址:http://www.020wbs.com/

首页 > 二次开发Ecshop二次开发 > ecshop浏览器关闭购物车保留

二次开发Ecshop二次开发

二次开发Ecshop二次开发

ecshop浏览器关闭购物车保留

 init.php
修改
if (!defined('INIT_NO_USERS'))

{



include(ROOT_PATH . 'includes/cls_session.php');

$sess = new cls_session($db, $ecs->table('sessions'), $ecs->table('sessions_data'));

define('SESS_ID', $sess->get_session_id());

}

if (!defined('INIT_NO_USERS'))

{



include(ROOT_PATH . 'includes/cls_session.php');

$sess = new cls_session($db, $ecs->table('sessions'), $ecs->table('sessions_data'));

//define('SESS_ID', $sess->get_session_id());

}
在最下面加
if($_COOKIE['randnumber']==""){
setcookie("randnumber",rand(0,1000),time()+86400);
}
define('SESS_ID', md5($_COOKIE['randnumber'].real_ip()));