私人领地
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页
摘要: ECShop 最新程序 的结构图及各文件相应功能介绍ECShop文件结构目录┣ activity.php 活动列表┣ affiche.php 广告处理文件┣ affiliate.php 生成商品列表┣ article.php 文章内容┣ article_cat.php文章分类┣ auction.ph 阅读全文
posted @ 2016-03-18 16:42 狂奔的蜗牛Snails 阅读(1209) 评论(0) 推荐(0) 编辑
摘要: 数据库结构说明,以及自己在后台备份不需要备份的表(红色字体是不需要备份的表)备份文件在FTP或者服务器上网站根目录下data\sqldata下 数据库采用mysql,共78张表 后台-数据库管理-数据备份-自定义备份 ecs_account_log:账户变动日志(注册用户充值、支付等记录信息) ec 阅读全文
posted @ 2016-03-18 16:39 狂奔的蜗牛Snails 阅读(1815) 评论(0) 推荐(0) 编辑
摘要: 1.商品列表增加“运费”,并且ajax修改 a.增添html代码 b.goods.php对edit_express_price进行处理 admin/goods.php代码 c.商品列表,增加express_price admin/include/lib_goods.php, function goo 阅读全文
posted @ 2016-03-17 17:07 狂奔的蜗牛Snails 阅读(341) 评论(0) 推荐(0) 编辑
摘要: 网站变灰色 图片变灰色 -webkit-filter: grayscale(100%); -webkit-filter: grayscale(1); filter: grayscale(100%); filter:url('../img/gray.svg#grayscale'); filter:gr 阅读全文
posted @ 2016-03-14 09:51 狂奔的蜗牛Snails 阅读(1081) 评论(0) 推荐(0) 编辑
摘要: 1.后台广告宽度限制不能超过1024,高度大于1,admin/ad_position.php 第236行 if ($ad_width > 1024 || $ad_width < 1) { make_json_error($_LANG['width_value']); } 阅读全文
posted @ 2016-03-11 15:46 狂奔的蜗牛Snails 阅读(195) 评论(0) 推荐(0) 编辑
摘要: ecshop后台“设置模板”出现问题 问题1:不能出现特殊符号 / <!-- TemplateBeginEditable name="5F生活数码/手机" --><!-- TemplateEndEditable --> 错误<!-- TemplateBeginEditable name="5F生活数 阅读全文
posted @ 2016-03-11 11:26 狂奔的蜗牛Snails 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 1.res = Ajax.call('user.php?act=depot_id', 'id='+v,null,"GET", "JSON",false); 2.所需要文件jquery.js ,transport.js(或者transport_jquery.js) 最简单的ecshop Ajax.ca 阅读全文
posted @ 2016-03-01 14:32 狂奔的蜗牛Snails 阅读(431) 评论(0) 推荐(0) 编辑
摘要: mysql更新语句很简单,更新一条数据的某个字段,一般这样写: 1 UPDATE mytable SET myfield = 'value' WHERE other_field = 'other_value'; 如果更新同一字段为同一个值,mysql也很简单,修改下where即可: 1 UPDATE 阅读全文
posted @ 2016-02-29 16:16 狂奔的蜗牛Snails 阅读(976) 评论(0) 推荐(0) 编辑
摘要: 邮箱登录 a.找到function login(){} ,增加一个邮箱判断is_mail()  , b.如果通过,增读取出username , c.再通过默认的login功能 1.需要修改文件include/modules/integrates/integrate.php 原代码 第145行   修 阅读全文
posted @ 2016-02-26 16:09 狂奔的蜗牛Snails 阅读(1031) 评论(0) 推荐(0) 编辑
摘要: 文件夹说明 名称备注(作用或意义) 根目录 前台程序文件 admin 后台程序文件 admin/help 功能的帮助文件 admin/images 后台页面用图片 admin/includes 后台公用文件和函数 admin/js 后台用js脚本 admin/style 后台用样式表 admin/t 阅读全文
posted @ 2016-02-26 14:55 狂奔的蜗牛Snails 阅读(494) 评论(0) 推荐(0) 编辑
摘要: 1.去掉“用户名”注册 a.去掉提交 user_passport.dwt页面去掉 <input name="username" type="text" size="30" id="username" onblur="is_registered(this.value);" class="input_l 阅读全文
posted @ 2016-02-25 15:59 狂奔的蜗牛Snails 阅读(855) 评论(0) 推荐(0) 编辑
摘要: 1.邮件服务器设置(配置好了,在本地和虚拟主机都可以使用) a.163邮箱配置 b.QQ邮箱配置 2.关注管理(客户关注了某以商品,就可以给客户发送邮件) 3.邮件订阅管理,数据表:ecs_email_list;与ecshp前端的订阅功能相关 ID,email,stat(0:未确认,1:确认),ha 阅读全文
posted @ 2016-02-24 16:44 狂奔的蜗牛Snails 阅读(501) 评论(0) 推荐(0) 编辑
摘要: // 热门推荐悬浮效果 $("#recom_con li img").mouseenter(function(){ $(this).stop(true, true); $w = parseInt($(this).width())+10; $(this).animate({'width':$w},30 阅读全文
posted @ 2016-01-30 11:13 狂奔的蜗牛Snails 阅读(1218) 评论(0) 推荐(0) 编辑
摘要: 问题描述:php提交数据的时候遇到特殊符号,需要转义才可以提交数据 如:提交单引号,双引号...php代码:$str = "我但是'sdf6448"; $data['goods_name'] = "'".addslashes(htmlspecialchars($str))."'";字段存储: 我... 阅读全文
posted @ 2016-01-22 14:31 狂奔的蜗牛Snails 阅读(289) 评论(0) 推荐(0) 编辑
摘要: include/cls_mysql.php正常操作例如:$sql = “UPDATE ecs_user SET user = ‘buxuan’ WHERE user_id = 1″;$db->query($sql);用ecshop的autoExecute操作,只需要$table = “ecs_use... 阅读全文
posted @ 2016-01-21 18:20 狂奔的蜗牛Snails 阅读(1189) 评论(0) 推荐(0) 编辑
摘要: 文件地址include/lib_order.php ,要引用需要先导入 lib_order.phprequire_once(ROOT_PATH . 'includes/lib_order.php');/** * 得到新订单号 * @return string */function get_or... 阅读全文
posted @ 2016-01-21 18:17 狂奔的蜗牛Snails 阅读(1272) 评论(0) 推荐(0) 编辑
摘要: html{insert_scripts files='region.js,utils.js'} php代码/* 取得国家列表、商店所在国家、商店所在国家的省列表 */ $smarty->assign('country_list', ... 阅读全文
posted @ 2016-01-21 17:06 狂奔的蜗牛Snails 阅读(672) 评论(0) 推荐(0) 编辑
摘要: 文件位置:include/init.php1.新建文件lib_xxx.php(lib_liangxin.php)2.在文件init.php 第74行加入代码require(ROOT_PATH . 'includes/inc_constant.php');require(ROOT_PATH . 'in... 阅读全文
posted @ 2016-01-18 11:28 狂奔的蜗牛Snails 阅读(443) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-01-12 11:01 狂奔的蜗牛Snails 阅读(5) 评论(0) 推荐(0) 编辑
摘要: private function createNonceStr($length = 16) { $chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; $str = ""; for ($i... 阅读全文
posted @ 2016-01-08 15:01 狂奔的蜗牛Snails 阅读(228) 评论(0) 推荐(0) 编辑
摘要: // 判断订单状态 public function get_order_status($os,$ps,$ss){ $arr = array('已取消','待付款','待发货','待收货','确认收货','无效'); if($os==OS_CANCELED){ ... 阅读全文
posted @ 2016-01-08 14:36 狂奔的蜗牛Snails 阅读(187) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2015-12-29 11:49 狂奔的蜗牛Snails 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1.先载入listtable.js2.html代码 a. 或者 b. c. d. e. f. g. 阅读全文
posted @ 2015-12-28 14:32 狂奔的蜗牛Snails 阅读(1718) 评论(0) 推荐(0) 编辑
摘要: 相关文件:goods.php,goods_list.htm思路:a.增添连接“转移仓库”b.在goods.php,读取仓库列表数据,并且实例化c. 在goods_list.htm循环数据。点击“转移仓库”的时候用的到d.修改js代码,changeAction。点击“转移仓库”就能够显示仓库列表e.p... 阅读全文
posted @ 2015-12-28 14:19 狂奔的蜗牛Snails 阅读(417) 评论(0) 推荐(0) 编辑
摘要: 关联文件Admin/goods.php?act=trash, Admin/js/listtable.jshtml代码删除php代码/*------------------------------------------------------ *///-- 删除仓库/*--------------... 阅读全文
posted @ 2015-12-28 14:14 狂奔的蜗牛Snails 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 思路:1.领取红包:也就是传递一个红包ID,和user_id然后update更新过来2.获取未领取过的红包列表:然后随机函数array_rand($arr,1),随机返回一个数组,从而获得红包列表的红包ID以上两步基本满足,领取红包功能3.判断该用户是否已经领取过红包基本代码html代码1: 完整版... 阅读全文
posted @ 2015-12-19 10:27 狂奔的蜗牛Snails 阅读(1663) 评论(0) 推荐(0) 编辑
摘要: 微商用户群:购物行为:年龄:终极用户体验:简单而有快捷 阅读全文
posted @ 2015-12-17 11:13 狂奔的蜗牛Snails 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 按商品发放:可以给指定某个商品发红包(购买付款,卖家发货后,会自动给买家发送红包;不是买家在付款的时候就自动可以减少红包金额)按订单金额发放:订单满xx后(卖家发货后,会自动给买家发放红包) 阅读全文
posted @ 2015-12-16 09:42 狂奔的蜗牛Snails 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 无标题文档王锋老师博客:http://blog.sina.com/wangfengteacher 阅读全文
posted @ 2015-12-15 17:10 狂奔的蜗牛Snails 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 格式lib_main.phpshow_message(内容, array(返回列表,继续编辑), array(连接地址一,链接地址二, 'info',false);true:自动跳转输出:function show_message($content, $links = '', $hrefs = ''... 阅读全文
posted @ 2015-12-15 16:00 狂奔的蜗牛Snails 阅读(853) 评论(0) 推荐(0) 编辑
摘要: 模板文件admin/template/menu.htm admin/includes/inc_menu.php 菜单排序(链接) langagues/zh_cn/admin/common.php 语言包 阅读全文
posted @ 2015-12-09 16:24 狂奔的蜗牛Snails 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 1.在线引用(需要登录后台创建项目)a) 引用css文件 //at.alicdn.com/t/font_1449129137_1142209.css (本文件是自动生成的)b) html : font-size控制图标大小 ,color控制图标颜色&#xe62f2.本地引用(需要4个部位)&#xe6... 阅读全文
posted @ 2015-12-03 16:13 狂奔的蜗牛Snails 阅读(540) 评论(0) 推荐(0) 编辑
摘要: function get_banner_path($img) { $img = empty($img) ? C('no_picture') : $img; return $img;} 阅读全文
posted @ 2015-12-01 16:19 狂奔的蜗牛Snails 阅读(139) 评论(0) 推荐(0) 编辑
摘要: // 订单 待付款、待发货、待收货、确认收货 public function get_serch_order($type/*,$limit_statrt,$limit_end,$serch*/){ $m =M()->pre.'order_info'; $userid... 阅读全文
posted @ 2015-11-30 12:00 狂奔的蜗牛Snails 阅读(1359) 评论(0) 推荐(0) 编辑
摘要: js代码function confirm_redirect(msg, url){ if (confirm(msg)) { location.href=url; }}html删除 阅读全文
posted @ 2015-11-27 14:37 狂奔的蜗牛Snails 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 设置位置:ecs_users标的 country字段,默认是0,默认地址是 users_address 的address_id设置默认收货地址/** * 设置默认地址 * * @access public * @param integer $id 收货地址id * @return bool... 阅读全文
posted @ 2015-11-27 10:35 狂奔的蜗牛Snails 阅读(677) 评论(0) 推荐(0) 编辑
摘要: /** * 取得状态列表 * @param string $type 类型:all | order | shipping | payment */function get_status_list($type = 'all'){ global $_LANG; $list = ar... 阅读全文
posted @ 2015-11-26 17:32 狂奔的蜗牛Snails 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 已确认,已发货,已付款 语言包 php输出 L('os'),L('ss'),L('ps') L('os') 输出:Array ( [0] => 未确认 [1] => 已确认 [5] => 已确认 [6] => 已确认 [2] => 已取消 [3] => 无效 [4] => 退货 ) L('ss') 阅读全文
posted @ 2015-11-25 17:30 狂奔的蜗牛Snails 阅读(426) 评论(0) 推荐(0) 编辑
摘要: html的连接地址待付款 阅读全文
posted @ 2015-11-25 11:54 狂奔的蜗牛Snails 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 1.基本使用 var OrderMenu = new Swiper('#OrderMenu',{ loop: false, // 是否循环 autoplay: 1000, // 时间 slidesPerView: 4, // 显示四列 prevButton:'#country_ban_prev', 阅读全文
posted @ 2015-11-25 10:31 狂奔的蜗牛Snails 阅读(1192) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页