您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop后台订单实现精准统计
痴珊2023-12-03 23:21:51ecshop商城教程已有人查阅
导读显示IP,来源网站等信息,通过这些信息能帮助你更好的掌握潜在客户的来源与分布,为精准营销提供条件
显示IP,来源网站等信息,通过这些信息能帮助你更好的掌握潜在客户的来源与分布,为精准营销提供条件
修改文件:/languages/zh_cn/admin/common.php,添加如下代码:
修改文件:/languages/zh_cn/admin/common.php,添加如下代码:
$_LANG['order_tongji'] = ’订单统计’;
修改文件:/admin/includes/inc_menu.php,添加
/* 二次开发 订单统计 */
$modules['06_stats']['order_tongji'] = ’order_tongji.php?act=list’;
创建文件:/admin/order_tongji.php
<?php
define(‘IN_ECS’, true); require(dirname(__FILE__) . ’/includes/init.php’); require(dirname(__FILE__) . ’/includes/cls_page.php’);
/*—————————————————— */ /*—————————————————— */
if ($_REQUEST['act'] == ’list’) { $sql=urlencode(“SELECT * FROM ” .$ecs->table(‘tongji’).“ as t right join ” .$ecs->table(‘order_info’).“ as i on t.order_sn=i.order_sn order by tongji_id desc”); $pclass=new Page($sql,20,10,“”,“”,“”,“”); $pclass->SetPagePara(“par”,“paravalue”); $pclass->ShowList($_GET["startpage"],$_GET["t"],$_GET["offset"],“order_tongji.php”,“act=list”); $i=’1′; $html = ”; while($row=mysql_fetch_row($pclass->Result)) { $html .= ’<tr>’; $html .= ’<td>’.$row[0].’</td>’; $html .= ’<td>’.$row[1].’</td>’; $html .= ’<td>’.$row[2].’</td>’; $html .= ’<td>’.date(‘Y-m-d H:i:s’,$row[4]+28800).’</td>’; $html .= ’<td>’.$row[6].’</td>’; $html .= ’<td>’.$row[5].’</td>’; $html .= ’<td>’.$row[7].’</td>’; $html .= ’<td>’.$row[8].’</td>’; $html .= ’</tr>’; }
$smarty->assign(‘page’, $pclass->OutPut); $smarty->assign(‘content’, $html); $smarty->display(‘tongji.htm’); } ?>
创建文件:/admin/templates/tongji.htm
{include file=“pageheader.htm”}
<div class=“list-div” id=“listDiv”> <table width=“ ” border=“0″ cellpadding=“3″ cellspacing=“1″>
<tr> <th>编号</th> <th>订单号</th> <th>收货人</th> <th>下单时间</th> <th>ip</th> <th>来源网站</th> <th>来源URL</th> <th>受访URL</th> </tr> {$content} <tr><td colspan=“8″ align=“center”><BR>{$page}</td></tr> </table> </div> {include file=“pagefooter.htm”}
修改文件 /flow.php 1246行左右,添加如下代码
if(isset($_COOKIE['request_info'])){ $request_info = unserialize(strtr($_COOKIE['request_info'],array(“\”=>”“))); $sql = ”INSERT INTO “.$ecs->table(‘tongji’).”(order_sn, user_name,start_time,end_time,host,ip,start_url,end_url) value(‘“.$order['order_sn'].”‘,’“.$order['c**ignee'].”‘,’“.$request_info['time'].”‘,’“.gmtime().”‘,’“.$request_info['host'].”‘,’“.$_SERVER['REMOTE_ADDR'].”‘,’“.$request_info['start_url'].”‘,’“.$request_info['end_url'].”‘)“; }else{ $sql = ”INSERT INTO “.$ecs->table(‘tongji’).”(order_sn, user_name,start_time,end_time,host,ip,start_url,end_url) value(‘“.$order['order_sn'].”‘,’“.$order['c**ignee'].”‘,’“.gmtime().”‘,’“.gmtime().”‘,’本站’,’“.$_SERVER['REMOTE_ADDR'].”‘,’本站’,'本站’)”; } $db->query($sql);
修改文件 include/init.php,添加
/* 记录请求信息 */ function request_info(){ $start_url = $_SERVER['HTTP_REFERER']; //来源网站 $start_url_info = parse_url($start_url); if($start_url_info['host']!=$_SERVER['SERVER_NAME'] && $start_url_info['host']!=”){ $request_info = array(); $request_info['host'] = $start_url_info['host']; //域名 $request_info['time'] = gmtime(); //时间 $request_info['start_url'] = $start_url; //时间 $request_info['end_url'] = $_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']; //被访页面 setcookie(‘request_info’, serialize($request_info), time()+86400, “/”); } } request_info();
本文标签:
很赞哦! ()
相关文章
- ecshop后台添加补货卡密去掉重复添加卡密限制的示例
- ecshop后台订单打印页订单信息页订单商品编辑页显示商品缩略图
- ecshop后台起始页打开慢加载慢的原因及解决方法
- ecshop后台订单加入商品到订单时提示库存不足请重新选择怎么办
- ecshop后台修改起始页位置显示商城安装时间日期教程
- ecshop后台商店设置教程
- ecshop后台订单列表显示收货人真实IP地理位置的实现方法
- ecshop后台会员注册审核功能开发说明
- ecshop后台商品列表怎么显示商品缩略图
- ecshop后台会员列表增加显示会员等级
- ecshop后台添加新功能栏目权限管理管理员列表权限控制
- ecshop后台订单详情显示商品缩略图及订单打印页显示商品缩略图
随机图文
-
ecshop表单在火狐浏览器下无法刷新重置的修复方法
这个问题不是ecshop系统独有的,其他所有涉及到表单的页面都会出现类似问题:问题现象为:在火狐浏览器下,ECSHOP表单无法刷新重置。 -
ecshop购物车流程删除电话,邮箱,手机,必填选项改成非必填
ECSHOP购物车流程删除电话,电子邮件,必填选项改成非必填,手机改成必填项。首先先来说下怎么删除电话、邮箱。 -
ecshop商品与文章删除时同时删除商品图片
ECSHOP删除文章或从回收站删除商品,文章内容和商品描述中的图片(位于/images/upload/Image目录)无法删除,时间长了会占用相当大的空间 -
ecshop管理员列表,ecshop管理员密码,ecshop管理员权限
ECSHOP管理员。登录 ECShop 后台,从权限管理可以添加,编辑网店的管理员,并可对这些管理员的管理权限进行设置。
留言与评论 (共有 条评论) |