Selaa lähdekoodia

resolve alipay pem problem

stanley-king 9 vuotta sitten
vanhempi
commit
737f136c3f
42 muutettua tiedostoa jossa 249 lisäystä ja 161371 poistoa
  1. 18 11
      admin/control/bonus.php
  2. 1 1
      admin/templates/default/bonus.bonus_type_form.php
  3. 1 1
      admin/templates/default/bonus.bonus_type_list.php
  4. 0 3
      core/framework/libraries/model.php
  5. 1 1
      core/framework/libraries/tpl.php
  6. 3 3
      crontab/crawl/category.php
  7. 13 16
      crontab/crawl/fetch_goods.php
  8. 9 3
      crontab/crawl/pretreat_tmdata.php
  9. 61 23
      crontab/crawl/product_importer.php
  10. 11 1
      crontab/crawl/spec_attr_parser.php
  11. 2 2
      crontab/crawl/tmrequest.php
  12. 0 12
      data/log/20141201.log
  13. 0 72
      data/log/20141207.log
  14. 0 30
      data/log/20141211.log
  15. 0 735
      data/log/20150122.log
  16. 0 40631
      data/log/20150125.log
  17. 0 24
      data/log/20150201.log
  18. 0 404
      data/log/20150203.log
  19. 0 107664
      data/log/20150204.log
  20. 0 168
      data/log/20150205.log
  21. 0 18
      data/log/20150206.log
  22. 0 9451
      data/log/20150207.log
  23. 0 1848
      data/log/20150208.log
  24. 0 6
      data/log/20150303.log
  25. 0 198
      data/log/20150822.log
  26. 5 4
      data/model/user_bonus.model.php
  27. 2 2
      fcgi_run.php
  28. 9 0
      info.php
  29. 13 15
      mobile/alipay_notify_url.php
  30. 4 1
      mobile/api/payment/alipay/key/alipay_public_key.pem
  31. 14 2
      mobile/api/payment/alipay/key/rsa_private_key.pem
  32. 1 1
      mobile/api/payment/alipay/lib/alipay_core.function.php
  33. 9 0
      mobile/api/payment/alipay/lib/alipay_notify.class.php
  34. 4 1
      mobile/api/payment/alipay/lib/alipay_rsa.function.php
  35. 16 10
      mobile/control/index.php
  36. 1 1
      mobile/control/login.php
  37. 5 2
      mobile/control/member_bonus.php
  38. 1 1
      mobile/framework/function/function.php
  39. 1 1
      mobile/templates/default/layout/layout.php
  40. 1 2
      mobile/util/errcode.php
  41. 35 0
      research/function_test.php
  42. 8 2
      research/research_run.php

+ 18 - 11
admin/control/bonus.php

@@ -6,12 +6,14 @@
  *
  ***/
 defined('InShopNC') or exit('Access Invalid!');
-class bonusControl extends SystemControl{
+class bonusControl extends SystemControl
+{
     public function __construct(){
         parent::__construct();
     }
 
-    public function bonus_typeOp(){
+    public function bonus_typeOp()
+    {
         $bonus_type = Model('bonus_type');
         $bonus_list = $bonus_type->getAll();
         Tpl::output('bonus_list', $bonus_list) ;
@@ -30,7 +32,8 @@ class bonusControl extends SystemControl{
         $this->bonus_form($id);
     }
 
-    public function bonus_type_saveOp() {
+    public function bonus_type_saveOp()
+    {
         $type_id = $_POST['type_id'] ? $_POST['type_id'] : 0;
         $bonus_value = array(
             'type_name' => $_POST['type_name'],
@@ -42,9 +45,11 @@ class bonusControl extends SystemControl{
         );
         $bonus_type = Model('bonus_type');
         $bonus_type->save($bonus_value, $type_id);
-        if(intval($_POST['send_type']) === 1){
+        if(intval($_POST['send_type']) === 1)
+        {
             $bonus_file = $_FILES['bonus_file'];
-            if($bonus_file && !empty($bonus_file['name'])){
+            if($bonus_file && !empty($bonus_file['name']))
+            {
                 if ($bonus_file['tmp_name'] == ""){
                     $this->setError('上传失败,请联系服务器管理员。');
                     return false;
@@ -57,7 +62,8 @@ class bonusControl extends SystemControl{
         $this->bonus_typeOp();
     }
 
-    private function bonus_form($id = 0){
+    private function bonus_form($id = 0)
+    {
         Tpl::output('id', $id);
         if($id > 0){
             $bonus_type = Model('bonus_type');
@@ -67,18 +73,19 @@ class bonusControl extends SystemControl{
         Tpl::showpage('bonus.bonus_type_form');
     }
 
-    private function show_menu($menu_type,$menu_key=''){
-        $menu_array		= array();
+    private function show_menu($menu_type,$menu_key='')
+    {
+        $menu_array = array();
         switch ($menu_type) {
             case 'bonus':
                 $menu_array = array(
-                1=>array('menu_key'=>'bonus_type_list','menu_name'=>'红包类型列表', 'menu_url'=>'index.php?act=bonus&op=bonus_type'),
-                2=>array('menu_key'=>'bonus_type_add','menu_name'=>'添加红包类型', 'menu_url'=>'index.php?act=bonus&op=bonus_type_add'),
+                    1=>array('menu_key'=>'bonus_type_list','menu_name'=>'已发红包', 'menu_url'=>'index.php?act=bonus&op=bonus_type'),
+                    2=>array('menu_key'=>'bonus_type_add','menu_name'=>'添加定向红包', 'menu_url'=>'index.php?act=bonus&op=bonus_type_add'),
                 );
                 break;
             case 'type':
                 $menu_array = array(
-                    1=>array('menu_key'=>'bonus_type_edit','menu_name'=>'编辑红包类型', 'menu_url'=>'index.php?act=bonus&op=bonus_type_edit')
+                    1=>array('menu_key'=>'bonus_type_edit','menu_name'=>'编辑红包', 'menu_url'=>'index.php?act=bonus&op=bonus_type_edit')
                 );
                 break;
         }

+ 1 - 1
admin/templates/default/bonus.bonus_type_form.php

@@ -22,7 +22,7 @@
         <table class="table tb-type2">
             <tbody>
             <tr class="noborder">
-                <td class="required" colspan="2"><label class="validation" for="type_name">红包类型名称</label></td>
+                <td class="required" colspan="2"><label class="validation" for="type_name">红包名称</label></td>
             </tr>
             <tr class="noborder">
                 <td class="vatop rowform"><input type="text" id="type_name" name="type_name" class="txt" value="<?php echo  isset($output['data'])? $output['data']['type_name'] : '';?>"></td>

+ 1 - 1
admin/templates/default/bonus.bonus_type_list.php

@@ -37,7 +37,7 @@
     <table class="table tb-type2">
         <thead>
         <tr class="thead">
-            <th class="w96">红包类型名称</th>
+            <th class="w96">红包名称</th>
             <th class="w96">发放类型</th>
             <th class="w96">开始发放时间</th>
             <th class="w96">结束发放时间</th>

+ 0 - 3
core/framework/libraries/model.php

@@ -669,7 +669,6 @@ class ModelDb
         if(is_mobile())
         {
             $sql = $this->buildSelectSql($options);
-            Log::record($sql, Log::SQL);
             $result = DB::getAll($sql,($options['lock'] === true || $options['master'] === true || defined('TRANS_MASTER')) ? 'master' : 'slave');
             return $result;
 
@@ -678,8 +677,6 @@ class ModelDb
         {
             static $_cache = array();
             $sql = $this->buildSelectSql($options);
-            Log::record($sql, Log::SQL);
-
             if ($options['cache'] === true)
             {
                 $key =  is_string($_cache['cache_key']) ? $_cache['cache_key'] : md5($sql);

+ 1 - 1
core/framework/libraries/tpl.php

@@ -123,7 +123,7 @@ class Tpl
             if ($layout != '')
             {
                 if (file_exists($layout_file)) {
-                    include_once($layout_file);
+                    include($layout_file);
                 } else {
                     $error = 'Tpl ERROR:' . 'templates' . DS . $layout . ' is not exists';
                     throw_exception($error);

+ 3 - 3
crontab/crawl/category.php

@@ -74,7 +74,7 @@ class category
         $items = $this->goods_class->field('*')->where(array('gc_id' => $cid))->limit(false)->select();
 
         if(empty($items)) {
-            echo("gc_id = $cid cannot get info from goods_class.\r\n");
+            Log::record("gc_id = {$cid} cannot get info from goods_class.",Log::ERR);
             return NULL;
         } else {
             return $items[0];
@@ -86,7 +86,7 @@ class category
         $items = $this->tm_cats->field('*')->where(array('cid' => $cid))->limit(false)->select();
 
         if(empty($items)) {
-            echo "cid = $cid cannot get info from tm_cats.\r\n";
+            Log::record("cid = {$cid} cannot get info from tm_cats",Log::ERR);
             return NULL;
         } else {
             return $items[0];
@@ -111,7 +111,7 @@ class category
 
             $id = $this->goods_class->insert($item);
             if($id == false) {
-                echo "insert cid = $cid error.";
+                Log::record("insert cid = {$cid} error.",Log::ERR);
             }
             $this->import_leaf($item['gc_parent_id']);
         }

+ 13 - 16
crontab/crawl/fetch_goods.php

@@ -30,7 +30,7 @@ function is_excids($cid)
     //50023728 赠品
     //50023725 邮费
     //50025832 搭配商品
-    static $cids = array(50023725,50023728,50025832);
+    static $cids = array(50023725,50023728,50025832,121284001,50011150);
     return in_array($cid,$cids);
 }
 
@@ -39,20 +39,17 @@ function not_null($str)
     return (empty($str)) ? '' : $str;
 }
 
-$str = md5('stanley%lrlz&00991122887733447755');
+//$tmreq = new tmrequest();
+//$tmreq->proc();
+////
+//$cat = new category();
+//$cat->proc();
 
+//$treater = new pretreat_tmdata();
+//$treater->proc(true);
+//
+//$spec = new spec_attr_parser();
+//$spec->proc();
 
-$tmreq = new tmrequest();
-$tmreq->proc();
-
-$cat = new category();
-$cat->proc();
-
-$treater = new pretreat_tmdata();
-$treater->proc();
-
-$spec = new spec_attr_parser();
-$spec->proc();
-
-//$importer = new product_importer();
-//$importer->proc();
+$importer = new product_importer();
+$importer->proc_shop();

+ 9 - 3
crontab/crawl/pretreat_tmdata.php

@@ -23,18 +23,24 @@ class pretreat_tmdata
         $this->goods_class = Model('goods_class');
     }
 
-    public function proc()
+    public function proc($create_brand)
     {
-        //,'num_iid' => 39955135116)
+        $this->tm_spec->where(array('num_iid > 0'))->delete();
         $results = $this->tm_goods->field('body,title,num_iid')->where(array('imported' => 0))->limit(false)->select();
         foreach ($results as $result) {
             $body = $result['body'];
             $response = json_decode($body, true);
             $item = $response['item_seller_get_response']['item'];
+
+            $cid = $item['cid'];
+            if(is_excids($cid)) continue;
+
             $this->parse_tm_product($item);
             $this->parse_tm_pic($item);
         }
-        $this->create_brand();
+        if($create_brand == true) {
+            $this->create_brand();
+        }
     }
 
     private function create_brand()

+ 61 - 23
crontab/crawl/product_importer.php

@@ -61,9 +61,8 @@ class product_importer
         $this->down_path = BASE_DATA_PATH . '/Download';
     }
 
-    private function get_tmgoods()
+    private function get_tmgoods($bodys)
     {
-        $bodys = $this->tm_goods->field('num_iid,shop_id,body,description')->where(array('imported' => 0))->limit(false)->order('num_iid')->select();
         $result = array();
 
         foreach($bodys as $body) {
@@ -80,6 +79,8 @@ class product_importer
         return $result;
     }
 
+
+
     private function fill_class($cid,&$general,&$name)
     {
         $this->cls_tree->get_info($cid,$cid_1,$cid_2,$cid_3,$name);
@@ -301,23 +302,6 @@ class product_importer
         $general['goods_addtime'] = strtotime($item['created']);
     }
 
-    private function upload_img($file)
-    {
-        $pic_name = '';
-        $upload = new upload_file();
-        $uploaddir = ATTACH_PATH.DS.'store_joinin'.DS;
-        $upload->set('default_dir',$uploaddir);
-        $upload->set('allow_type',array('jpg','jpeg','gif','png'));
-        if (!empty($_FILES[$file]['name'])){
-            $result = $upload->upfile($file);
-            if ($result){
-                $pic_name = $upload->file_name;
-                $upload->file_name = '';
-            }
-        }
-        return $pic_name;
-    }
-
     private function reset_imgs($imges)
     {
         if(empty($imges)) return '';
@@ -387,7 +371,7 @@ class product_importer
 
 
 
-    private function import_item($item,$desc,$num_iid,$shop_id)
+    private function import_item($item,$desc,$num_iid,$shop_id,&$nsku)
     {
         $cid = $item['cid'];
 
@@ -395,7 +379,7 @@ class product_importer
         $this->fill_general($cid,$item,$general,$name,$num_iid,$shop_id);
 
         //属于SKU 信息中
-        $skus = &$item['skus'];
+        $skus = $item['skus'];
         $typeid = $cid;
 
         $goods_attr = $this->get_common_attr($cid,$item['props']);
@@ -475,10 +459,11 @@ class product_importer
 
         if(empty($skus))
         {
+            $nsku = 1;
             $goods = $general;
 
             $goods['goods_edittime'] = strtotime($item['modified']);
-            $goods['goods_serial'] = $item['outer_id'];
+            $goods['goods_serial'] = not_null($item['outer_id']);
             $goods['goods_price'] = $item['price'];
             $goods['goods_addtime'] = strtotime($item['created']);
             $goods['goods_storage'] = empty($item['quantity']) ? 0 : $item['quantity'];
@@ -494,6 +479,7 @@ class product_importer
         {
             foreach($skus as $skuex)
             {
+                $nsku = count($skuex);
                 foreach($skuex as $sku)
                 {
                     $goods = $general;
@@ -519,7 +505,9 @@ class product_importer
 
     public function proc()
     {
-        $items = $this->get_tmgoods();
+        $bodys = $this->tm_goods->field('num_iid,shop_id,body,description')->where(array('imported' => 0))->limit(false)->order('num_iid')->select();
+
+        $items = $this->get_tmgoods($bodys);
         foreach($items as $item) {
             print "handle num_iid=" . $item['num_iid'] . " start.\r\n";
             $this->import_item($item['body'],$item['desc'],$item['num_iid'],$item['shop_id']);
@@ -528,4 +516,54 @@ class product_importer
             print "handle num_iid=" . $item['num_iid'] . " end. \r\n";
         }
     }
+
+    public function proc_shop()
+    {
+        //SELECT shop_id,count(*) FROM 33hao.lrlz_tm_goods group by shop_id;
+
+        $shopes = $this->tm_goods->field('shop_id,count(*) as n')->group('shop_id')->limit(false)->select();
+
+        foreach($shopes as $shop)
+        {
+            $shopid = $shop['shop_id'];
+            $count = $shop['n'];
+
+            $bodys = $this->tm_goods->field('num_iid,cid,shop_id,body,description')->where(array('imported' => 0,'shop_id' => $shopid))->limit(false)->order('num_iid')->select();
+
+            $items = $this->get_tmgoods($bodys);
+            foreach($items as $item) {
+                print "handle num_iid=" . $item['num_iid'] . " start.\r\n";
+
+                $cid = $item['cid'];
+                if(is_excids($cid)) continue;
+
+                $this->import_item($item['body'],$item['desc'],$item['num_iid'],$item['shop_id'],$nsku);
+                $this->tm_goods->where(array('num_iid' => $item['num_iid']))->update(array('imported' => 1));
+                print "handle num_iid=" . $item['num_iid'] . " end. \r\n";
+
+                $num_iid = $item['num_iid'];
+
+                if($this->check_count($num_iid,$nsku) == false) {
+                    Log::record("shopid = {$shopid} and num_iid = {$num_iid} nsku = {$nsku} cannot be imported.");
+                }
+            }
+        }
+    }
+
+    private function check_count($num_iid,$nsku)
+    {
+        $ncommon = $this->mod_goods_common->where(array('num_iid' => $num_iid))->count();
+        if($ncommon != 1) {
+            Log::record("goods_common table's data is not equal 1 where num_iid = {$num_iid}",Log::ERR);
+            return false;
+        }
+
+        $ngoods = $this->mod_goods->where(array('num_iid' => $num_iid))->count();
+
+        if($ngoods != $nsku) {
+            Log::record("goods table's data is not equal {$nsku} where num_iid = {$num_iid}",Log::ERR);
+            return false;
+        }
+        return true;
+    }
 }

+ 11 - 1
crontab/crawl/spec_attr_parser.php

@@ -69,11 +69,13 @@ class spec_attr_parser
         $datas = $this->tm_spec->group('props')->order('props')->limit(false)->select(); //获取所有独立的规格
         foreach ($datas as $item) {
             $cid = $item['cid'];
+            if(is_excids($cid)) continue;
+
             $pid = $item['props'];
             $spec_name = $this->get_tm_props_name($cid, $pid);
             $sp_id = $this->mod_spec->insert(array('sp_id' => $pid, 'sp_name' => $spec_name));
             if($sp_id != $pid) {
-                Log::record(__FUNCTION__ . ':' . __LINE__ . "  cannt find prop values from $cid $pid",Log::ERR);
+                Log::record(__FUNCTION__ . ':' . __LINE__ . "  cannt find prop values from {$cid} {$pid}",Log::ERR);
             }
         }
     }
@@ -84,6 +86,8 @@ class spec_attr_parser
         $items = $this->tm_spec->field('cid')->group('cid')->limit(false)->select();
         foreach($items as $item) {
             $cid = $item['cid']; // $cid => $typeid 以分类建立类型
+            if(is_excids($cid)) continue;
+
             $cnmae = $this->get_class_name($cid);
             $this->mod_type->insert(array("type_id" => $cid, "type_name" => $cnmae));
             $this->mod_good_class->where(array("gc_id" => $cid))->update(array("type_id" => $cid, "type_name" => $cnmae));
@@ -103,6 +107,8 @@ class spec_attr_parser
         foreach($items as $item)
         {
             $cid = $item['cid']; // $cid => $typeid 以分类建立类型
+            if(is_excids($cid)) continue;
+
             $pid = $item['props'];
 
             if($this->type_spec_exist($cid,$pid)) continue;
@@ -207,6 +213,8 @@ class spec_attr_parser
         foreach ($tmgoods as $goods)
         {
             $cid = $goods['body']['cid'];
+            if(is_excids($cid)) continue;
+
             $skus = $goods['body']['skus'];
             if(empty($skus)) continue;
             $skus = $skus['sku'];
@@ -280,6 +288,8 @@ class spec_attr_parser
         foreach ($tmgoods as $goods)
         {
             $cid = $goods['body']['cid'];
+            if(is_excids($cid)) continue;
+
             $props = $this->parse_properties_name($goods['body']['props_name']);
             $expids = $this->get_specids($cid);
 

+ 2 - 2
crontab/crawl/tmrequest.php

@@ -119,7 +119,7 @@ barcode,sold_quantity,price,post_fee,express_fee,ems_fee,global_stock_type,globa
     {
         foreach ($items as $item)
         {
-            echo "Inof: shop id =" . $item["shop_id"] . " name=" . $item["shop_name"] . " appKey=" . $item['appKey'] . " sercetCode=" . $item['sercetCode'] . " sessionKey=" . $item['sessionKey'] . "\r\n";
+            Log::record("Inof: shop id =" . $item["shop_id"] . " name=" . $item["shop_name"] . " appKey=" . $item['appKey'] . " sercetCode=" . $item['sercetCode'] . " sessionKey=" . $item['sessionKey'],Log::DEBUG);
 
             $this->appkey = $item['appKey'];
             $this->secretKey = $item['sercetCode'];
@@ -129,7 +129,7 @@ barcode,sold_quantity,price,post_fee,express_fee,ems_fee,global_stock_type,globa
 
             $sale_items = $this->get_onsale();
             if (empty($sale_items)) {
-                echo "Error: get product info from taobao err where " . "shop id =" . $item["shop_id"] . " name=" . $item["shop_name"] . "\r\n";
+                Log::record("get product info from taobao err where " . "shop id =" . $item["shop_id"] . " name=" . $item["shop_name"],Log::ERR);
             }
             else
             {

+ 0 - 12
data/log/20141201.log

@@ -1,12 +0,0 @@
-[2014-12-01 10:34:40] /admin/index.php?act=dashboard&op=statistics ( act=dashboard&op=statistics ) 
-ERR: Db Error: Table '33hao.33hao_vr_refund' doesn't exist
-SELECT COUNT(*) AS nc_count FROM `33hao`.`33hao_vr_refund` WHERE ( admin_state = '1' ) LIMIT 1  
-[2014-12-01 10:34:40] /admin/index.php?act=dashboard&op=statistics ( act=dashboard&op=statistics ) 
-ERR: Db Error: Table '33hao.33hao_vr_order_bill' doesn't exist
-SELECT COUNT(*) AS nc_count FROM `33hao`.`33hao_vr_order_bill` WHERE ( ob_state = '2' ) LIMIT 1  
-[2014-12-01 10:34:40] /admin/index.php?act=dashboard&op=statistics ( act=dashboard&op=statistics ) 
-ERR: Db Error: Table '33hao.33hao_vr_order_bill' doesn't exist
-SELECT COUNT(*) AS nc_count FROM `33hao`.`33hao_vr_order_bill` WHERE ( ob_state = '3' ) LIMIT 1  
-[2014-12-01 10:34:40] /admin/index.php?act=dashboard&op=statistics ( act=dashboard&op=statistics ) 
-ERR: Db Error: Table '33hao.33hao_delivery_point' doesn't exist
-SELECT COUNT(*) AS nc_count FROM `33hao`.`33hao_delivery_point` WHERE ( dlyp_state = '10' ) LIMIT 1  

Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 0 - 72
data/log/20141207.log


+ 0 - 30
data/log/20141211.log

@@ -1,30 +0,0 @@
-[2014-12-11 23:04:08] /admin/index.php?act=web_special&op=web_special_list ( act=web_special&op=web_special_list ) 
-ERR: Db Error: Table '33hao.33hao_web_special' doesn't exist
-SELECT COUNT(*) AS nc_count FROM `33hao`.`33hao_web_special` LIMIT 1  
-[2014-12-11 23:04:08] /admin/index.php?act=web_special&op=web_special_list ( act=web_special&op=web_special_list ) 
-ERR: Db Error: Table '33hao.33hao_web_special' doesn't exist
-SELECT * FROM `33hao`.`33hao_web_special` ORDER BY special_id desc LIMIT 0,10  
-[2014-12-11 23:05:11] /admin/index.php?act=web_special&op=web_special_save ( act=web_special&op=web_special_save ) 
-ERR: Db Error: Table '33hao.33hao_web_special' doesn't exist
-INSERT  INTO `33hao`.`33hao_web_special` (special_title,special_image,special_image_all,special_margin_top,special_content,special_background_color,special_repeat,special_modify_time,special_publish_id,special_state) VALUES ('电影专区','04716543113754474.jpg','','0','123','#000000','no-repeat','1418310311','1','1')
-[2014-12-11 23:05:12] /admin/index.php?act=web_special&op=web_special_list ( act=web_special&op=web_special_list ) 
-ERR: Db Error: Table '33hao.33hao_web_special' doesn't exist
-SELECT COUNT(*) AS nc_count FROM `33hao`.`33hao_web_special` LIMIT 1  
-[2014-12-11 23:05:12] /admin/index.php?act=web_special&op=web_special_list ( act=web_special&op=web_special_list ) 
-ERR: Db Error: Table '33hao.33hao_web_special' doesn't exist
-SELECT * FROM `33hao`.`33hao_web_special` ORDER BY special_id desc LIMIT 0,10  
-[2014-12-11 23:08:37] /admin/index.php?act=web_special&op=web_special_list ( act=web_special&op=web_special_list ) 
-ERR: Db Error: Table '33hao.33hao_web_special' doesn't exist
-SELECT COUNT(*) AS nc_count FROM `33hao`.`33hao_web_special` LIMIT 1  
-[2014-12-11 23:08:37] /admin/index.php?act=web_special&op=web_special_list ( act=web_special&op=web_special_list ) 
-ERR: Db Error: Table '33hao.33hao_web_special' doesn't exist
-SELECT * FROM `33hao`.`33hao_web_special` ORDER BY special_id desc LIMIT 0,10  
-[2014-12-11 23:08:58] /admin/index.php?act=web_special&op=web_special_save ( act=web_special&op=web_special_save ) 
-ERR: Db Error: Table '33hao.33hao_web_special' doesn't exist
-INSERT  INTO `33hao`.`33hao_web_special` (special_title,special_image,special_image_all,special_margin_top,special_content,special_background_color,special_repeat,special_modify_time,special_publish_id,special_state) VALUES ('电影专区','04716545382963865.jpg','','0','123','#000000','no-repeat','1418310538','1','2')
-[2014-12-11 23:08:59] /admin/index.php?act=web_special&op=web_special_list ( act=web_special&op=web_special_list ) 
-ERR: Db Error: Table '33hao.33hao_web_special' doesn't exist
-SELECT COUNT(*) AS nc_count FROM `33hao`.`33hao_web_special` LIMIT 1  
-[2014-12-11 23:08:59] /admin/index.php?act=web_special&op=web_special_list ( act=web_special&op=web_special_list ) 
-ERR: Db Error: Table '33hao.33hao_web_special' doesn't exist
-SELECT * FROM `33hao`.`33hao_web_special` ORDER BY special_id desc LIMIT 0,10  

+ 0 - 735
data/log/20150122.log

@@ -1,735 +0,0 @@
-[2015-01-22 19:56:48] /admin/index.php?act=dashboard&op=statistics ( act=dashboard&op=statistics ) 
-ERR: Db Error: Table '33hao.33hao_vr_refund' doesn't exist
-SELECT COUNT(*) AS nc_count FROM `33hao_vr_refund` WHERE ( admin_state = '1' ) LIMIT 1  
-[2015-01-22 19:56:48] /admin/index.php?act=dashboard&op=statistics ( act=dashboard&op=statistics ) 
-ERR: Db Error: Table '33hao.33hao_vr_order_bill' doesn't exist
-SELECT COUNT(*) AS nc_count FROM `33hao_vr_order_bill` WHERE ( ob_state = '2' ) LIMIT 1  
-[2015-01-22 19:56:48] /admin/index.php?act=dashboard&op=statistics ( act=dashboard&op=statistics ) 
-ERR: Db Error: Table '33hao.33hao_vr_order_bill' doesn't exist
-SELECT COUNT(*) AS nc_count FROM `33hao_vr_order_bill` WHERE ( ob_state = '3' ) LIMIT 1  
-[2015-01-22 19:56:54] /admin/index.php?act=cache&op=clear ( act=cache&op=clear ) 
-ERR: Db Error: Table '33hao.33hao_web' doesn't exist
-SELECT * FROM `33hao_web` WHERE ( web_show = '1' ) AND ( web_page LIKE 'index%' ) ORDER BY web_sort LIMIT 1000  
-[2015-01-22 19:57:02] /shop/ ( act=index&op=index ) 
-ERR: Db Error: Table '33hao.33hao_web' doesn't exist
-SELECT * FROM `33hao_web` WHERE ( web_show = '1' ) AND ( web_page LIKE 'index%' ) ORDER BY web_sort LIMIT 1000  
-[2015-01-22 19:57:10] /shop/ ( act=index&op=index ) 
-ERR: Db Error: Table '33hao.33hao_web' doesn't exist
-SELECT * FROM `33hao_web` WHERE ( web_show = '1' ) AND ( web_page LIKE 'index%' ) ORDER BY web_sort LIMIT 1000  
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreactivity' doesn't exist
-SHOW CREATE TABLE TABLEPREactivity
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreactivity_detail' doesn't exist
-SHOW CREATE TABLE TABLEPREactivity_detail
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreaddress' doesn't exist
-SHOW CREATE TABLE TABLEPREaddress
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreadmin' doesn't exist
-SHOW CREATE TABLE TABLEPREadmin
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreadmin_log' doesn't exist
-SHOW CREATE TABLE TABLEPREadmin_log
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreadv' doesn't exist
-SHOW CREATE TABLE TABLEPREadv
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreadv_click' doesn't exist
-SHOW CREATE TABLE TABLEPREadv_click
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreadv_position' doesn't exist
-SHOW CREATE TABLE TABLEPREadv_position
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprealbum_class' doesn't exist
-SHOW CREATE TABLE TABLEPREalbum_class
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprealbum_pic' doesn't exist
-SHOW CREATE TABLE TABLEPREalbum_pic
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprearea' doesn't exist
-SHOW CREATE TABLE TABLEPREarea
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprearrival_notice' doesn't exist
-SHOW CREATE TABLE TABLEPREarrival_notice
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprearticle' doesn't exist
-SHOW CREATE TABLE TABLEPREarticle
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprearticle_class' doesn't exist
-SHOW CREATE TABLE TABLEPREarticle_class
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreattribute' doesn't exist
-SHOW CREATE TABLE TABLEPREattribute
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreattribute_value' doesn't exist
-SHOW CREATE TABLE TABLEPREattribute_value
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprebrand' doesn't exist
-SHOW CREATE TABLE TABLEPREbrand
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecart' doesn't exist
-SHOW CREATE TABLE TABLEPREcart
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprechat_log' doesn't exist
-SHOW CREATE TABLE TABLEPREchat_log
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprechat_msg' doesn't exist
-SHOW CREATE TABLE TABLEPREchat_msg
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_affix' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_affix
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_class' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_class
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_explog' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_explog
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_expmember' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_expmember
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_exptheme' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_exptheme
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_fs' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_fs
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_inform' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_inform
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_like' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_like
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_mapply' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_mapply
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_member' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_member
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_ml' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_ml
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_mldefault' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_mldefault
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_mlref' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_mlref
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_recycle' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_recycle
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_thclass' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_thclass
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_theme' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_theme
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_thg' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_thg
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_thpoll' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_thpoll
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_thpolloption' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_thpolloption
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_thpollvoter' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_thpollvoter
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecircle_threply' doesn't exist
-SHOW CREATE TABLE TABLEPREcircle_threply
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_article' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_article
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_article_attitude' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_article_attitude
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_article_class' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_article_class
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_comment' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_comment
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_comment_up' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_comment_up
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_index_module' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_index_module
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_module' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_module
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_module_assembly' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_module_assembly
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_module_frame' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_module_frame
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_navigation' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_navigation
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_picture' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_picture
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_picture_class' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_picture_class
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_picture_image' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_picture_image
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_special' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_special
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_tag' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_tag
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecms_tag_relation' doesn't exist
-SHOW CREATE TABLE TABLEPREcms_tag_relation
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecomplain' doesn't exist
-SHOW CREATE TABLE TABLEPREcomplain
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecomplain_subject' doesn't exist
-SHOW CREATE TABLE TABLEPREcomplain_subject
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecomplain_talk' doesn't exist
-SHOW CREATE TABLE TABLEPREcomplain_talk
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreconsult' doesn't exist
-SHOW CREATE TABLE TABLEPREconsult
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreconsult_type' doesn't exist
-SHOW CREATE TABLE TABLEPREconsult_type
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprecron' doesn't exist
-SHOW CREATE TABLE TABLEPREcron
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepredaddress' doesn't exist
-SHOW CREATE TABLE TABLEPREdaddress
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepredelivery_order' doesn't exist
-SHOW CREATE TABLE TABLEPREdelivery_order
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepredelivery_point' doesn't exist
-SHOW CREATE TABLE TABLEPREdelivery_point
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepredocument' doesn't exist
-SHOW CREATE TABLE TABLEPREdocument
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreevaluate_goods' doesn't exist
-SHOW CREATE TABLE TABLEPREevaluate_goods
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreevaluate_store' doesn't exist
-SHOW CREATE TABLE TABLEPREevaluate_store
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreexppoints_log' doesn't exist
-SHOW CREATE TABLE TABLEPREexppoints_log
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreexpress' doesn't exist
-SHOW CREATE TABLE TABLEPREexpress
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprefavorites' doesn't exist
-SHOW CREATE TABLE TABLEPREfavorites
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreflea' doesn't exist
-SHOW CREATE TABLE TABLEPREflea
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreflea_area' doesn't exist
-SHOW CREATE TABLE TABLEPREflea_area
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreflea_class' doesn't exist
-SHOW CREATE TABLE TABLEPREflea_class
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreflea_class_index' doesn't exist
-SHOW CREATE TABLE TABLEPREflea_class_index
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreflea_consult' doesn't exist
-SHOW CREATE TABLE TABLEPREflea_consult
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreflea_favorites' doesn't exist
-SHOW CREATE TABLE TABLEPREflea_favorites
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreflea_upload' doesn't exist
-SHOW CREATE TABLE TABLEPREflea_upload
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreflowstat' doesn't exist
-SHOW CREATE TABLE TABLEPREflowstat
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreflowstat_1' doesn't exist
-SHOW CREATE TABLE TABLEPREflowstat_1
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreflowstat_2' doesn't exist
-SHOW CREATE TABLE TABLEPREflowstat_2
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregadmin' doesn't exist
-SHOW CREATE TABLE TABLEPREgadmin
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregoods' doesn't exist
-SHOW CREATE TABLE TABLEPREgoods
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregoods_attr_index' doesn't exist
-SHOW CREATE TABLE TABLEPREgoods_attr_index
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregoods_browse' doesn't exist
-SHOW CREATE TABLE TABLEPREgoods_browse
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregoods_class' doesn't exist
-SHOW CREATE TABLE TABLEPREgoods_class
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregoods_class_staple' doesn't exist
-SHOW CREATE TABLE TABLEPREgoods_class_staple
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregoods_class_tag' doesn't exist
-SHOW CREATE TABLE TABLEPREgoods_class_tag
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregoods_combo' doesn't exist
-SHOW CREATE TABLE TABLEPREgoods_combo
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregoods_common' doesn't exist
-SHOW CREATE TABLE TABLEPREgoods_common
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregoods_fcode' doesn't exist
-SHOW CREATE TABLE TABLEPREgoods_fcode
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregoods_gift' doesn't exist
-SHOW CREATE TABLE TABLEPREgoods_gift
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregoods_images' doesn't exist
-SHOW CREATE TABLE TABLEPREgoods_images
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregroupbuy' doesn't exist
-SHOW CREATE TABLE TABLEPREgroupbuy
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregroupbuy_class' doesn't exist
-SHOW CREATE TABLE TABLEPREgroupbuy_class
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregroupbuy_price_range' doesn't exist
-SHOW CREATE TABLE TABLEPREgroupbuy_price_range
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepregroupbuy_quota' doesn't exist
-SHOW CREATE TABLE TABLEPREgroupbuy_quota
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprehelp' doesn't exist
-SHOW CREATE TABLE TABLEPREhelp
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprehelp_type' doesn't exist
-SHOW CREATE TABLE TABLEPREhelp_type
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreinform' doesn't exist
-SHOW CREATE TABLE TABLEPREinform
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreinform_subject' doesn't exist
-SHOW CREATE TABLE TABLEPREinform_subject
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreinform_subject_type' doesn't exist
-SHOW CREATE TABLE TABLEPREinform_subject_type
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreinvoice' doesn't exist
-SHOW CREATE TABLE TABLEPREinvoice
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprelink' doesn't exist
-SHOW CREATE TABLE TABLEPRElink
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprelive_area' doesn't exist
-SHOW CREATE TABLE TABLEPRElive_area
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprelive_class' doesn't exist
-SHOW CREATE TABLE TABLEPRElive_class
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprelive_groupbuy' doesn't exist
-SHOW CREATE TABLE TABLEPRElive_groupbuy
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprelive_order' doesn't exist
-SHOW CREATE TABLE TABLEPRElive_order
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprelive_order_pwd' doesn't exist
-SHOW CREATE TABLE TABLEPRElive_order_pwd
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprelock' doesn't exist
-SHOW CREATE TABLE TABLEPRElock
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremail_cron' doesn't exist
-SHOW CREATE TABLE TABLEPREmail_cron
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremail_msg_temlates' doesn't exist
-SHOW CREATE TABLE TABLEPREmail_msg_temlates
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremall_consult' doesn't exist
-SHOW CREATE TABLE TABLEPREmall_consult
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremall_consult_type' doesn't exist
-SHOW CREATE TABLE TABLEPREmall_consult_type
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremb_category' doesn't exist
-SHOW CREATE TABLE TABLEPREmb_category
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremb_feedback' doesn't exist
-SHOW CREATE TABLE TABLEPREmb_feedback
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremb_payment' doesn't exist
-SHOW CREATE TABLE TABLEPREmb_payment
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremb_special' doesn't exist
-SHOW CREATE TABLE TABLEPREmb_special
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremb_special_item' doesn't exist
-SHOW CREATE TABLE TABLEPREmb_special_item
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremb_user_token' doesn't exist
-SHOW CREATE TABLE TABLEPREmb_user_token
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremember' doesn't exist
-SHOW CREATE TABLE TABLEPREmember
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremember_common' doesn't exist
-SHOW CREATE TABLE TABLEPREmember_common
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremember_msg_setting' doesn't exist
-SHOW CREATE TABLE TABLEPREmember_msg_setting
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremember_msg_tpl' doesn't exist
-SHOW CREATE TABLE TABLEPREmember_msg_tpl
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremessage' doesn't exist
-SHOW CREATE TABLE TABLEPREmessage
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremicro_adv' doesn't exist
-SHOW CREATE TABLE TABLEPREmicro_adv
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremicro_comment' doesn't exist
-SHOW CREATE TABLE TABLEPREmicro_comment
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremicro_goods' doesn't exist
-SHOW CREATE TABLE TABLEPREmicro_goods
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremicro_goods_class' doesn't exist
-SHOW CREATE TABLE TABLEPREmicro_goods_class
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremicro_goods_relation' doesn't exist
-SHOW CREATE TABLE TABLEPREmicro_goods_relation
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremicro_like' doesn't exist
-SHOW CREATE TABLE TABLEPREmicro_like
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremicro_member_info' doesn't exist
-SHOW CREATE TABLE TABLEPREmicro_member_info
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremicro_personal' doesn't exist
-SHOW CREATE TABLE TABLEPREmicro_personal
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremicro_personal_class' doesn't exist
-SHOW CREATE TABLE TABLEPREmicro_personal_class
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepremicro_store' doesn't exist
-SHOW CREATE TABLE TABLEPREmicro_store
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprenavigation' doesn't exist
-SHOW CREATE TABLE TABLEPREnavigation
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreoffpay_area' doesn't exist
-SHOW CREATE TABLE TABLEPREoffpay_area
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreorder' doesn't exist
-SHOW CREATE TABLE TABLEPREorder
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreorder_bill' doesn't exist
-SHOW CREATE TABLE TABLEPREorder_bill
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreorder_common' doesn't exist
-SHOW CREATE TABLE TABLEPREorder_common
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreorder_goods' doesn't exist
-SHOW CREATE TABLE TABLEPREorder_goods
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreorder_log' doesn't exist
-SHOW CREATE TABLE TABLEPREorder_log
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreorder_pay' doesn't exist
-SHOW CREATE TABLE TABLEPREorder_pay
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreorder_statis' doesn't exist
-SHOW CREATE TABLE TABLEPREorder_statis
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprep_booth_goods' doesn't exist
-SHOW CREATE TABLE TABLEPREp_booth_goods
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprep_booth_quota' doesn't exist
-SHOW CREATE TABLE TABLEPREp_booth_quota
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprep_bundling' doesn't exist
-SHOW CREATE TABLE TABLEPREp_bundling
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprep_bundling_goods' doesn't exist
-SHOW CREATE TABLE TABLEPREp_bundling_goods
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprep_bundling_quota' doesn't exist
-SHOW CREATE TABLE TABLEPREp_bundling_quota
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprep_mansong' doesn't exist
-SHOW CREATE TABLE TABLEPREp_mansong
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprep_mansong_quota' doesn't exist
-SHOW CREATE TABLE TABLEPREp_mansong_quota
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprep_mansong_rule' doesn't exist
-SHOW CREATE TABLE TABLEPREp_mansong_rule
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprep_xianshi' doesn't exist
-SHOW CREATE TABLE TABLEPREp_xianshi
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprep_xianshi_goods' doesn't exist
-SHOW CREATE TABLE TABLEPREp_xianshi_goods
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprep_xianshi_quota' doesn't exist
-SHOW CREATE TABLE TABLEPREp_xianshi_quota
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprepayment' doesn't exist
-SHOW CREATE TABLE TABLEPREpayment
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprepd_cash' doesn't exist
-SHOW CREATE TABLE TABLEPREpd_cash
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprepd_log' doesn't exist
-SHOW CREATE TABLE TABLEPREpd_log
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprepd_recharge' doesn't exist
-SHOW CREATE TABLE TABLEPREpd_recharge
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprepoints_cart' doesn't exist
-SHOW CREATE TABLE TABLEPREpoints_cart
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprepoints_goods' doesn't exist
-SHOW CREATE TABLE TABLEPREpoints_goods
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprepoints_log' doesn't exist
-SHOW CREATE TABLE TABLEPREpoints_log
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprepoints_order' doesn't exist
-SHOW CREATE TABLE TABLEPREpoints_order
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprepoints_orderaddress' doesn't exist
-SHOW CREATE TABLE TABLEPREpoints_orderaddress
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprepoints_ordergoods' doesn't exist
-SHOW CREATE TABLE TABLEPREpoints_ordergoods
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprercb_log' doesn't exist
-SHOW CREATE TABLE TABLEPRErcb_log
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprerec_position' doesn't exist
-SHOW CREATE TABLE TABLEPRErec_position
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprerechargecard' doesn't exist
-SHOW CREATE TABLE TABLEPRErechargecard
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprerefund_reason' doesn't exist
-SHOW CREATE TABLE TABLEPRErefund_reason
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprerefund_return' doesn't exist
-SHOW CREATE TABLE TABLEPRErefund_return
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreseller' doesn't exist
-SHOW CREATE TABLE TABLEPREseller
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreseller_group' doesn't exist
-SHOW CREATE TABLE TABLEPREseller_group
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreseller_log' doesn't exist
-SHOW CREATE TABLE TABLEPREseller_log
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreseo' doesn't exist
-SHOW CREATE TABLE TABLEPREseo
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepresetting' doesn't exist
-SHOW CREATE TABLE TABLEPREsetting
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepresns_albumclass' doesn't exist
-SHOW CREATE TABLE TABLEPREsns_albumclass
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepresns_albumpic' doesn't exist
-SHOW CREATE TABLE TABLEPREsns_albumpic
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepresns_binding' doesn't exist
-SHOW CREATE TABLE TABLEPREsns_binding
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepresns_comment' doesn't exist
-SHOW CREATE TABLE TABLEPREsns_comment
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepresns_friend' doesn't exist
-SHOW CREATE TABLE TABLEPREsns_friend
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepresns_goods' doesn't exist
-SHOW CREATE TABLE TABLEPREsns_goods
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepresns_membertag' doesn't exist
-SHOW CREATE TABLE TABLEPREsns_membertag
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepresns_mtagmember' doesn't exist
-SHOW CREATE TABLE TABLEPREsns_mtagmember
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepresns_setting' doesn't exist
-SHOW CREATE TABLE TABLEPREsns_setting
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepresns_sharegoods' doesn't exist
-SHOW CREATE TABLE TABLEPREsns_sharegoods
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepresns_sharestore' doesn't exist
-SHOW CREATE TABLE TABLEPREsns_sharestore
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepresns_tracelog' doesn't exist
-SHOW CREATE TABLE TABLEPREsns_tracelog
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepresns_visitor' doesn't exist
-SHOW CREATE TABLE TABLEPREsns_visitor
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprespec' doesn't exist
-SHOW CREATE TABLE TABLEPREspec
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprespec_value' doesn't exist
-SHOW CREATE TABLE TABLEPREspec_value
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestat_member' doesn't exist
-SHOW CREATE TABLE TABLEPREstat_member
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestat_order' doesn't exist
-SHOW CREATE TABLE TABLEPREstat_order
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestat_ordergoods' doesn't exist
-SHOW CREATE TABLE TABLEPREstat_ordergoods
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore' doesn't exist
-SHOW CREATE TABLE TABLEPREstore
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_bind_class' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_bind_class
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_class' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_class
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_cost' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_cost
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_decoration' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_decoration
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_decoration_album' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_decoration_album
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_decoration_block' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_decoration_block
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_extend' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_extend
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_goods_class' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_goods_class
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_grade' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_grade
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_joinin' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_joinin
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_msg' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_msg
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_msg_read' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_msg_read
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_msg_setting' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_msg_setting
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_msg_tpl' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_msg_tpl
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_navigation' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_navigation
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_plate' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_plate
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_reopen' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_reopen
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_sns_comment' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_sns_comment
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_sns_setting' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_sns_setting
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_sns_tracelog' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_sns_tracelog
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_watermark' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_watermark
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprestore_waybill' doesn't exist
-SHOW CREATE TABLE TABLEPREstore_waybill
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepretransport' doesn't exist
-SHOW CREATE TABLE TABLEPREtransport
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepretransport_extend' doesn't exist
-SHOW CREATE TABLE TABLEPREtransport_extend
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepretype' doesn't exist
-SHOW CREATE TABLE TABLEPREtype
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepretype_brand' doesn't exist
-SHOW CREATE TABLE TABLEPREtype_brand
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepretype_spec' doesn't exist
-SHOW CREATE TABLE TABLEPREtype_spec
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreupload' doesn't exist
-SHOW CREATE TABLE TABLEPREupload
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprevoucher' doesn't exist
-SHOW CREATE TABLE TABLEPREvoucher
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprevoucher_price' doesn't exist
-SHOW CREATE TABLE TABLEPREvoucher_price
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprevoucher_quota' doesn't exist
-SHOW CREATE TABLE TABLEPREvoucher_quota
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprevoucher_template' doesn't exist
-SHOW CREATE TABLE TABLEPREvoucher_template
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprevr_groupbuy_area' doesn't exist
-SHOW CREATE TABLE TABLEPREvr_groupbuy_area
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprevr_groupbuy_class' doesn't exist
-SHOW CREATE TABLE TABLEPREvr_groupbuy_class
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprevr_order' doesn't exist
-SHOW CREATE TABLE TABLEPREvr_order
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprevr_order_bill' doesn't exist
-SHOW CREATE TABLE TABLEPREvr_order_bill
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprevr_order_code' doesn't exist
-SHOW CREATE TABLE TABLEPREvr_order_code
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprevr_order_statis' doesn't exist
-SHOW CREATE TABLE TABLEPREvr_order_statis
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprevr_refund' doesn't exist
-SHOW CREATE TABLE TABLEPREvr_refund
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tableprewaybill' doesn't exist
-SHOW CREATE TABLE TABLEPREwaybill
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreweb' doesn't exist
-SHOW CREATE TABLE TABLEPREweb
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreweb_code' doesn't exist
-SHOW CREATE TABLE TABLEPREweb_code
-[2015-01-22 23:41:06] /admin/index.php?act=db&op=db&step=1 ( act=db&op=db ) 
-ERR: Db Error: Table '33hao.tablepreweb_special' doesn't exist
-SHOW CREATE TABLE TABLEPREweb_special

Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 0 - 40631
data/log/20150125.log


+ 0 - 24
data/log/20150201.log

@@ -1,24 +0,0 @@
-[2015-02-01 00:46:03] /data/crontab/index.php ( act=index&op=index ) 
-ERR: Db Error: Duplicate entry '0' for key 'PRIMARY'
-INSERT  INTO `33hao_order_statis` () VALUES ()
-[2015-02-01 00:53:21] /data/crontab/index.php ( act=index&op=index ) 
-ERR: Db Error: Duplicate entry '0' for key 'PRIMARY'
-INSERT  INTO `33hao_order_statis` () VALUES ()
-[2015-02-01 00:53:36] /data/crontab/index.php?act=mail ( act=mail&op=index ) 
-ERR: Db Error: Duplicate entry '0' for key 'PRIMARY'
-INSERT  INTO `33hao_order_statis` () VALUES ()
-[2015-02-01 00:53:36] /data/crontab/index.php?act=mail ( act=mail&op=index ) 
-ERR: Db Error: Duplicate entry '0' for key 'PRIMARY'
-INSERT  INTO `33hao_order_statis` () VALUES ()
-[2015-02-01 01:04:25] /data/crontab/index.php?act=mail ( act=mail&op=index ) 
-ERR: Db Error: Duplicate entry '0' for key 'PRIMARY'
-INSERT  INTO `33hao_order_statis` () VALUES ()
-[2015-02-01 01:04:44] /data/crontab/index.php?act=mail ( act=mail&op=index ) 
-ERR: Db Error: Duplicate entry '0' for key 'PRIMARY'
-INSERT  INTO `33hao_order_statis` () VALUES ()
-[2015-02-01 01:08:29] /data/crontab/index.php?act=mail ( act=mail&op=index ) 
-ERR: Db Error: Duplicate entry '0' for key 'PRIMARY'
-INSERT  INTO `33hao_order_statis` () VALUES ()
-[2015-02-01 01:11:40] /data/crontab/index.php?act=mail ( act=mail&op=index ) 
-ERR: Db Error: Duplicate entry '0' for key 'PRIMARY'
-INSERT  INTO `33hao_order_statis` () VALUES ()

Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 0 - 404
data/log/20150203.log


Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 0 - 107664
data/log/20150204.log


Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 0 - 168
data/log/20150205.log


+ 0 - 18
data/log/20150206.log

@@ -1,18 +0,0 @@
-[2015-02-06 09:04:47] /shop/index.php?act=search&cate_id=794&op=index ( act=search&op=index ) 
-ERR: Db Error: Table '33hao.33hao_type_brand' doesn't exist
-SELECT brand_id FROM `33hao_type_brand` WHERE ( type_id = NULL ) LIMIT 1000  
-[2015-02-06 09:04:47] /shop/index.php?act=search&cate_id=794&op=index ( act=search&op=index ) 
-ERR: Db Error: Table '33hao.33hao_goods' doesn't exist
-SELECT count(distinct CONCAT(goods_commonid,',',color_id)) AS nc_count FROM `33hao_goods` WHERE ( goods_state = '1' ) AND ( goods_verify = '1' ) LIMIT 1  
-[2015-02-06 09:04:50] /shop/index.php?act=search&cate_id=763&curpage=1&op=index ( act=search&op=index ) 
-ERR: Db Error: Table '33hao.33hao_type_brand' doesn't exist
-SELECT brand_id FROM `33hao_type_brand` WHERE ( type_id = NULL ) LIMIT 1000  
-[2015-02-06 09:04:50] /shop/index.php?act=search&cate_id=763&curpage=1&op=index ( act=search&op=index ) 
-ERR: Db Error: Table '33hao.33hao_goods_images' doesn't exist
-SELECT * FROM `33hao_goods_images` WHERE ( goods_commonid IN ('100410','100409','100359','100408','100407','100406','100405','100404','100403','100402','100360','100401','100400','100399','100398','100397','100396') ) ORDER BY is_default desc,goods_image_sort asc LIMIT 1000  
-[2015-02-06 09:04:50] /shop/index.php?act=search&op=index&cate_id=787&key=0&order=0&area_id=6 ( act=search&op=index ) 
-ERR: Db Error: Table '33hao.33hao_type_brand' doesn't exist
-SELECT brand_id FROM `33hao_type_brand` WHERE ( type_id = NULL ) LIMIT 1000  
-[2015-02-06 09:04:50] /shop/index.php?act=search&cate_id=763&curpage=1&op=index ( act=search&op=index ) 
-ERR: Db Error: Table '33hao.33hao_store' doesn't exist
-SELECT store_id,member_id,store_domain FROM `33hao_store` WHERE ( store_id IN ('3') ) LIMIT 1000  

Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 0 - 9451
data/log/20150207.log


Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 0 - 1848
data/log/20150208.log


+ 0 - 6
data/log/20150303.log

@@ -1,6 +0,0 @@
-[2015-03-03 10:04:25] /shop/index.php?act=login&op=usersave ( act=login&op=usersave ) 
-ERR: Db Error: Unknown column 'inviter_id' in 'field list'
-INSERT  INTO `33hao_member` (member_id,member_name,member_passwd,member_email,member_time,member_login_time,member_old_login_time,member_login_ip,member_old_login_ip,member_truename,member_qq,member_sex,member_avatar,member_qqopenid,member_qqinfo,member_sinaopenid,member_sinainfo,inviter_id) VALUES (NULL,'test','e10adc3949ba59abbe56e057f20f883e','32132@qq.com','1425348264','1425348264','1425348264','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0')
-[2015-03-03 10:05:37] /shop/index.php?act=login&op=usersave ( act=login&op=usersave ) 
-ERR: Db Error: Unknown column 'inviter_id' in 'field list'
-INSERT  INTO `33hao_member` (member_id,member_name,member_passwd,member_email,member_time,member_login_time,member_old_login_time,member_login_ip,member_old_login_ip,member_truename,member_qq,member_sex,member_avatar,member_qqopenid,member_qqinfo,member_sinaopenid,member_sinainfo,inviter_id) VALUES (NULL,'test','e10adc3949ba59abbe56e057f20f883e','13231@qq.com','1425348336','1425348336','1425348336','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1')

+ 0 - 198
data/log/20150822.log

@@ -1,198 +0,0 @@
-[2015-08-22 16:33:18] /admin/index.php/admin/index.php?act=cache&op=clear ( act=cache&op=clear ) 
-ERR: Db Error: Disk is full writing './mysql-bin.000014' (Errcode: 28). Waiting for someone to free space... (Expect up to 60 secs delay for server to continue after freeing disk space)
-UPDATE `33hao_web` SET web_html='
-<div class=\"home-standard-layout wrapper style-brown\">
-  <div class=\"left-sidebar\">
-    <div class=\"title\">
-      	      	    <div class=\"txt-type\">
-                        <span>7F</span>                        <h2 title=\"珠宝手表\">珠宝手表</h2>
-            </div>
-      	    </div>
-    <div class=\"left-ads\">
-      	      	<a href=\"http://zmrwebshopv2.com/shop\" title=\"\" target=\"_blank\">
-      	<img src=\"http://shopnc.yage.com/data/upload/shop/editor/web-7-73.jpg?778\" alt=\"\">
-      	</a>
-      	    </div>
-    <div class=\"recommend-classes\">
-      <ul>
-                  		                            <li><a href=\"http://shopnc.yage.com/shop/index.php?act=search&op=index&cate_id=531\" title=\"时尚饰品\" target=\"_blank\">时尚饰品</a></li>
-		                            <li><a href=\"http://shopnc.yage.com/shop/index.php?act=search&op=index&cate_id=532\" title=\"纯金K金饰品\" target=\"_blank\">纯金K金饰品</a></li>
-		                            <li><a href=\"http://shopnc.yage.com/shop/index.php?act=search&op=index&cate_id=533\" title=\"金银投资\" target=\"_blank\">金银投资</a></li>
-		                            <li><a href=\"http://shopnc.yage.com/shop/index.php?act=search&op=index&cate_id=534\" title=\"银饰\" target=\"_blank\">银饰</a></li>
-		                            <li><a href=\"http://shopnc.yage.com/shop/index.php?act=search&op=index&cate_id=535\" title=\"钻石饰品\" target=\"_blank\">钻石饰品</a></li>
-		                            <li><a href=\"http://shopnc.yage.com/shop/index.php?act=search&op=index&cate_id=536\" title=\"翡翠玉石\" target=\"_blank\">翡翠玉石</a></li>
-		                            <li><a href=\"http://shopnc.yage.com/shop/index.php?act=search&op=index&cate_id=537\" title=\"水晶玛瑙\" target=\"_blank\">水晶玛瑙</a></li>
-		                            <li><a href=\"http://shopnc.yage.com/shop/index.php?act=search&op=index&cate_id=538\" title=\"宝石珍珠\" target=\"_blank\">宝石珍珠</a></li>
-		                            <li><a href=\"http://shopnc.yage.com/shop/index.php?act=search&op=index&cate_id=539\" title=\"婚庆\" target=\"_blank\">婚庆</a></li>
-		                            <li><a href=\"http://shopnc.yage.com/shop/index.php?act=search&op=index&cate_id=540\" title=\"钟表手表\" target=\"_blank\">钟表手表</a></li>
-		                                          </ul>
-    </div>
-  </div>
-  <div class=\"middle-layout\">
-    <ul class=\"tabs-nav\">
-                                            <li class=\"tabs-selected\"><i class=\"arrow\"></i><h3>商品推荐</h3></li>
-                                        </ul>
-                                                                                                <div class=\"tabs-panel middle-goods-list \">
-                                    <ul>
-                                                                          <li>
-                                        <dl>
-                                          <dt class=\"goods-name\"><a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100067\" title=\"周生生珠宝足金大眼猴黄金项链吊坠首饰品 男女款 39099P计价\">
-                                          	周生生珠宝足金大眼猴黄金项链吊坠首饰品 男女款 39099P计价</a></dt>
-                                          <dd class=\"goods-thumb\">
-                                          	<a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100067\">
-                                          	<img src=\"http://shopnc.yage.com/data/upload/shop/store/goods/1/1_138853ffb6tb1sryx___0-item_pic_240.jpg\" alt=\"周生生珠宝足金大眼猴黄金项链吊坠首饰品 男女款 39099P计价\" />
-                                          	</a></dd>
-                                          <dd class=\"goods-price\"><em>¥621.00</em>
-                                            <span class=\"original\">¥621.00</span></dd>
-                                        </dl>
-                                      </li>
-                                                                          <li>
-                                        <dl>
-                                          <dt class=\"goods-name\"><a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100066\" title=\"【分期0首付】七款可选周大福珠宝3D福星宝宝足金黄金吊坠R\">
-                                          	【分期0首付】七款可选周大福珠宝3D福星宝宝足金黄金吊坠R</a></dt>
-                                          <dd class=\"goods-thumb\">
-                                          	<a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100066\">
-                                          	<img src=\"http://shopnc.yage.com/data/upload/shop/store/goods/1/1_13875c2c97tb124vx___0-item_pic_240.jpg\" alt=\"【分期0首付】七款可选周大福珠宝3D福星宝宝足金黄金吊坠R\" />
-                                          	</a></dd>
-                                          <dd class=\"goods-price\"><em>¥2260.00</em>
-                                            <span class=\"original\">¥2260.00</span></dd>
-                                        </dl>
-                                      </li>
-                                                                          <li>
-                                        <dl>
-                                          <dt class=\"goods-name\"><a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100065\" title=\"佐卡伊 18K金钻石女戒 钻石戒指女戒排戒排钻戒指  正品珠宝\">
-                                          	佐卡伊 18K金钻石女戒 钻石戒指女戒排戒排钻戒指  正品珠宝</a></dt>
-                                          <dd class=\"goods-thumb\">
-                                          	<a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100065\">
-                                          	<img src=\"http://shopnc.yage.com/data/upload/shop/store/goods/1/1_1399197056tb16mxx___0-item_pic_240.jpg\" alt=\"佐卡伊 18K金钻石女戒 钻石戒指女戒排戒排钻戒指  正品珠宝\" />
-                                          	</a></dd>
-                                          <dd class=\"goods-price\"><em>¥1199.00</em>
-                                            <span class=\"original\">¥1199.00</span></dd>
-                                        </dl>
-                                      </li>
-                                                                          <li>
-                                        <dl>
-                                          <dt class=\"goods-name\"><a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100064\" title=\"母亲节送妈妈 无瑕天然珍珠项链8-9MM白色正圆强光 正品乐优珠宝\">
-                                          	母亲节送妈妈 无瑕天然珍珠项链8-9MM白色正圆强光 正品乐优珠宝</a></dt>
-                                          <dd class=\"goods-thumb\">
-                                          	<a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100064\">
-                                          	<img src=\"http://shopnc.yage.com/data/upload/shop/store/goods/1/1_14176b4c1etb1zrex___0-item_pic_240.jpg\" alt=\"母亲节送妈妈 无瑕天然珍珠项链8-9MM白色正圆强光 正品乐优珠宝\" />
-                                          	</a></dd>
-                                          <dd class=\"goods-price\"><em>¥1105.00</em>
-                                            <span class=\"original\">¥1105.00</span></dd>
-                                        </dl>
-                                      </li>
-                                                                          <li>
-                                        <dl>
-                                          <dt class=\"goods-name\"><a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100063\" title=\"梦一珠宝 翡翠镶嵌千足金玉坠 金镶玉吊坠观音佛公男女情侣项链款\">
-                                          	梦一珠宝 翡翠镶嵌千足金玉坠 金镶玉吊坠观音佛公男女情侣项链款</a></dt>
-                                          <dd class=\"goods-thumb\">
-                                          	<a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100063\">
-                                          	<img src=\"http://shopnc.yage.com/data/upload/shop/store/goods/1/1_1414df7635tb1514x___0-item_pic_240.jpg\" alt=\"梦一珠宝 翡翠镶嵌千足金玉坠 金镶玉吊坠观音佛公男女情侣项链款\" />
-                                          	</a></dd>
-                                          <dd class=\"goods-price\"><em>¥1088.00</em>
-                                            <span class=\"original\">¥1088.00</span></dd>
-                                        </dl>
-                                      </li>
-                                                                          <li>
-                                        <dl>
-                                          <dt class=\"goods-name\"><a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100062\" title=\"珍珠鸟珠宝 淡水珍珠项链9-10mm天然珍珠强光 正品礼物送妈妈\">
-                                          	珍珠鸟珠宝 淡水珍珠项链9-10mm天然珍珠强光 正品礼物送妈妈</a></dt>
-                                          <dd class=\"goods-thumb\">
-                                          	<a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100062\">
-                                          	<img src=\"http://shopnc.yage.com/data/upload/shop/store/goods/1/1_1421a1a9a1tb1l3tx___0-item_pic_240.jpg\" alt=\"珍珠鸟珠宝 淡水珍珠项链9-10mm天然珍珠强光 正品礼物送妈妈\" />
-                                          	</a></dd>
-                                          <dd class=\"goods-price\"><em>¥432.00</em>
-                                            <span class=\"original\">¥432.00</span></dd>
-                                        </dl>
-                                      </li>
-                                                                          <li>
-                                        <dl>
-                                          <dt class=\"goods-name\"><a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100061\" title=\"唯兰朵首饰盒木质欧式公主饰品盒结婚生日礼物高档珠宝化妆收纳盒\">
-                                          	唯兰朵首饰盒木质欧式公主饰品盒结婚生日礼物高档珠宝化妆收纳盒</a></dt>
-                                          <dd class=\"goods-thumb\">
-                                          	<a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100061\">
-                                          	<img src=\"http://shopnc.yage.com/data/upload/shop/store/goods/1/1_1402c85953tb17rfx___0-item_pic_240.jpg\" alt=\"唯兰朵首饰盒木质欧式公主饰品盒结婚生日礼物高档珠宝化妆收纳盒\" />
-                                          	</a></dd>
-                                          <dd class=\"goods-price\"><em>¥459.00</em>
-                                            <span class=\"original\">¥459.00</span></dd>
-                                        </dl>
-                                      </li>
-                                                                          <li>
-                                        <dl>
-                                          <dt class=\"goods-name\"><a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100060\" title=\"首饰珠宝店镜子柜台专用双面展示平镜摆台式化妆镜佩戴看货镜道具\">
-                                          	首饰珠宝店镜子柜台专用双面展示平镜摆台式化妆镜佩戴看货镜道具</a></dt>
-                                          <dd class=\"goods-thumb\">
-                                          	<a target=\"_blank\" href=\"http://shopnc.yage.com/shop/index.php?act=goods&op=index&goods_id=100060\">
-                                          	<img src=\"http://shopnc.yage.com/data/upload/shop/store/goods/1/1_1405940222tb1h0hx___0-item_pic_240.jpg\" alt=\"首饰珠宝店镜子柜台专用双面展示平镜摆台式化妆镜佩戴看货镜道具\" />
-                                          	</a></dd>
-                                          <dd class=\"goods-price\"><em>¥98.00</em>
-                                            <span class=\"original\">¥98.00</span></dd>
-                                        </dl>
-                                      </li>
-                                                                        </ul>
-                                  </div>
-                                                                </div>
-  <div class=\"right-sidebar\">
-    <div class=\"title\"></div>
-    <div class=\"recommend-brand\">
-      <ul>
-                                            <li>
-          <a href=\"http://shopnc.yage.com/shop/index.php?act=brand&op=list&brand=304\" title=\"世达球\" target=\"_blank\">
-          	<img src=\"http://shopnc.yage.com/data/upload/shop/brand/04399889410183423_sm.jpg\" alt=\"世达球\"></a>
-        </li>
-                          <li>
-          <a href=\"http://shopnc.yage.com/shop/index.php?act=brand&op=list&brand=303\" title=\"直觉\" target=\"_blank\">
-          	<img src=\"http://shopnc.yage.com/data/upload/shop/brand/04399889262024650_sm.jpg\" alt=\"直觉\"></a>
-        </li>
-                          <li>
-          <a href=\"http://shopnc.yage.com/shop/index.php?act=brand&op=list&brand=302\" title=\"妈咪宝贝\" target=\"_blank\">
-          	<img src=\"http://shopnc.yage.com/data/upload/shop/brand/04399884799920935_sm.jpg\" alt=\"妈咪宝贝\"></a>
-        </li>
-                          <li>
-          <a href=\"http://shopnc.yage.com/shop/index.php?act=brand&op=list&brand=301\" title=\"婴姿坊\" target=\"_blank\">
-          	<img src=\"http://shopnc.yage.com/data/upload/shop/brand/04399884644632532_sm.jpg\" alt=\"婴姿坊\"></a>
-        </li>
-                          <li>
-          <a href=\"http://shopnc.yage.com/shop/index.php?act=brand&op=list&brand=300\" title=\"好孩子\" target=\"_blank\">
-          	<img src=\"http://shopnc.yage.com/data/upload/shop/brand/04399884512865285_sm.jpg\" alt=\"好孩子\"></a>
-        </li>
-                          <li>
-          <a href=\"http://shopnc.yage.com/shop/index.php?act=brand&op=list&brand=299\" title=\"十月妈咪\" target=\"_blank\">
-          	<img src=\"http://shopnc.yage.com/data/upload/shop/brand/04399884360526483_sm.jpg\" alt=\"十月妈咪\"></a>
-        </li>
-                          <li>
-          <a href=\"http://shopnc.yage.com/shop/index.php?act=brand&op=list&brand=298\" title=\"亨氏\" target=\"_blank\">
-          	<img src=\"http://shopnc.yage.com/data/upload/shop/brand/04399884182772511_sm.jpg\" alt=\"亨氏\"></a>
-        </li>
-                          <li>
-          <a href=\"http://shopnc.yage.com/shop/index.php?act=brand&op=list&brand=297\" title=\"雅培\" target=\"_blank\">
-          	<img src=\"http://shopnc.yage.com/data/upload/shop/brand/04399884035362889_sm.jpg\" alt=\"雅培\"></a>
-        </li>
-                          <li>
-          <a href=\"http://shopnc.yage.com/shop/index.php?act=brand&op=list&brand=296\" title=\"新大王\" target=\"_blank\">
-          	<img src=\"http://shopnc.yage.com/data/upload/shop/brand/04399883855598553_sm.jpg\" alt=\"新大王\"></a>
-        </li>
-                          <li>
-          <a href=\"http://shopnc.yage.com/shop/index.php?act=brand&op=list&brand=295\" title=\"Hipp\" target=\"_blank\">
-          	<img src=\"http://shopnc.yage.com/data/upload/shop/brand/04399883690219411_sm.jpg\" alt=\"Hipp\"></a>
-        </li>
-                          <li>
-          <a href=\"http://shopnc.yage.com/shop/index.php?act=brand&op=list&brand=294\" title=\"费雪\" target=\"_blank\">
-          	<img src=\"http://shopnc.yage.com/data/upload/shop/brand/04399883534332035_sm.jpg\" alt=\"费雪\"></a>
-        </li>
-                          <li>
-          <a href=\"http://shopnc.yage.com/shop/index.php?act=brand&op=list&brand=293\" title=\"新安怡\" target=\"_blank\">
-          	<img src=\"http://shopnc.yage.com/data/upload/shop/brand/04399883297614786_sm.jpg\" alt=\"新安怡\"></a>
-        </li>
-                                          </ul>
-    </div>
-    <div class=\"right-side-focus\">
-      <ul>
-                                                                                <li><a href=\"\" title=\"\" target=\"_blank\">
-                        <img src=\"http://shopnc.yage.com/data/upload/shop/editor/web-7-78-1.jpg?173\" alt=\"\"/></a>
-                      	</li>
-                                                                </ul>
-    </div>
-  </div>
-</div>',update_time='1440232338' WHERE ( web_id = '7' )

+ 5 - 4
data/model/user_bonus.model.php

@@ -1,16 +1,17 @@
 <?php
 /**
- * ºì°üÄ£ÐÍ
+ * ����
  *
 
  */
 defined('InShopNC') or exit('Access Invalid!');
-class user_bonusModel extends Model {
-    public function __construct(){
+class user_bonusModel extends Model
+{
+    public function __construct() {
         parent::__construct('user_bonus');
     }
 
-    public function loadFile($content){
+    public function loadFile($content) {
         $lines = explode("\n", $content);
         foreach($lines as $line){
             $bonus = explode(',', trim($line));

+ 2 - 2
fcgi_run.php

@@ -32,10 +32,10 @@ function run_fcgi()
             if(file_exists($file))
             {
                 if(pays_execute($file)) {
-                    echo("Content-Type: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8; charset=UTF-8\r\n\r\n");
+                    header("Content-Type: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8; charset=UTF-8\r\n\r\n");
                     include $file;
                 } else {
-                    echo("Content-Type: text/html; charset=UTF-8\r\n\r\n");
+                    header("Content-Type: text/html; charset=UTF-8\r\n\r\n");
                     Base::mobile_control();
                 }
             }

+ 9 - 0
info.php

@@ -0,0 +1,9 @@
+<?php
+/**
+ * Created by PhpStorm.
+ * User: stanley-king
+ * Date: 16/1/4
+ * Time: 下午12:04
+ */
+
+phpinfo();

+ 13 - 15
mobile/alipay_notify_url.php

@@ -17,10 +17,9 @@
 
 define('ALIPAY_PATH', BASE_MOBILE_PATH . '/api/payment/alipay');
 
-require_once(ALIPAY_PATH . "/alipay.config.php");
-require_once(ALIPAY_PATH . "/lib/alipay_notify.class.php");
-
-require_once('control/app_pay.php');
+require_once(ALIPAY_PATH . '/alipay.config.php');
+require_once(ALIPAY_PATH . '/lib/alipay_notify.class.php');
+require_once(BASE_MOBILE_PATH . '/control/app_pay.php');
 
 
 //商户订单号
@@ -28,15 +27,16 @@ $out_trade_no = $_POST['out_trade_no'];
 //支付宝交易号
 $trade_no = $_POST['trade_no'];
 
-Log::record(">>>>>ENTER alipay_notify_url out_trade_no={$out_trade_no}");
+Log::record("alipay_notify_url: out_trade_no={$out_trade_no}",Log::DEBUG);
 
 //计算得出通知验证结果
 $alipayNotify = new AlipayNotify($alipay_config);
 $verify_result = $alipayNotify->verifyReturn();
 
-if ($verify_result) {//验证成功
+if ($verify_result)
+{//验证成功
 
-    Log::record(">>>>>verify notify success : out_trade_no={$out_trade_no}");
+    Log::record("verify notify success : out_trade_no={$out_trade_no}",Log::DEBUG);
 
     //交易状态
     $trade_status = $_POST['trade_status'];
@@ -77,10 +77,10 @@ if ($verify_result) {//验证成功
         $cb_info = app_payControl::update_order($out_trade_no, $trade_no, 'alipay');
         if ($cb_info['state'] == false) {
 
-            fcgi_echo('fail');
+            echo('fail');
             Log::record(">>>>alipay fail: trade_no={$trade_no}");
         } else {
-            fcgi_echo('success');
+            echo('success');
             Log::record(">>>>>alipay success: trade_no={$trade_no}");
         }
 
@@ -115,10 +115,10 @@ if ($verify_result) {//验证成功
         $cb_info = app_payControl::update_order($out_trade_no, $trade_no, 'alipay');
         if ($cb_info['state'] == false) {
 
-            fcgi_echo('fail');
+            echo('fail');
             Log::record(">>>>alipay success: trade_no={$trade_no}");
         } else {
-            fcgi_echo('success');
+            echo('success');
             Log::record(">>>>>alipay success: trade_no={$trade_no}");
         }
     } else if ($_POST['trade_status'] == 'WAIT_BUYER_PAY'){  // 交易创建
@@ -127,16 +127,14 @@ if ($verify_result) {//验证成功
 
     //——请根据您的业务逻辑来编写程序(以上代码仅作参考)——
 
-    fcgi_echo("success");        //请不要修改或删除
+    echo("success");        //请不要修改或删除
     Log::record(">>>>>alipay success: out_trade_no={$out_trade_no}");
 
     /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 } else {
     //验证失败
-    fcgi_echo("fail");
-
+    echo("fail");
     Log::record(">>>>verify notify fail : out_trade_no={$out_trade_no}");
-
     //调试用,写文本函数记录程序运行情况是否正常
 }
 ?>

+ 4 - 1
mobile/api/payment/alipay/key/alipay_public_key.pem

@@ -1,3 +1,6 @@
 -----BEGIN PUBLIC KEY-----
-MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCnxj/9qwVfgoUh/y2W89L6BkRAFljhNhgPdyPuBV64bfQNN1PjbCzkIM6qRdKBoLPXmKKMiFYnkd6rAoprih3/PrQEB/VsW8OoM8fxn67UDYuyBTqA23MML9q1+ilIZwBC2AQ2UBVOrFXfFl75p6/B5KsiNG9zpgmLCUYuLkxpLQIDAQAB
+MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCnxj/9qwVfgoUh/y2W89L6BkRA
+FljhNhgPdyPuBV64bfQNN1PjbCzkIM6qRdKBoLPXmKKMiFYnkd6rAoprih3/PrQE
+B/VsW8OoM8fxn67UDYuyBTqA23MML9q1+ilIZwBC2AQ2UBVOrFXfFl75p6/B5Ksi
+NG9zpgmLCUYuLkxpLQIDAQAB
 -----END PUBLIC KEY-----

Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 14 - 2
mobile/api/payment/alipay/key/rsa_private_key.pem


+ 1 - 1
mobile/api/payment/alipay/lib/alipay_core.function.php

@@ -17,7 +17,7 @@
 function createLinkstring($para) {
 	$arg  = "";
 	while (list ($key, $val) = each ($para)) {
-		$arg.=$key."=".$val."&";
+		$arg.=$key."=".urldecode($val)."&";
 	}
 	//去掉最后一个&字符
 	$arg = substr($arg,0,count($arg)-2);

+ 9 - 0
mobile/api/payment/alipay/lib/alipay_notify.class.php

@@ -173,6 +173,15 @@ class AlipayNotify
         //把数组所有元素,按照“参数=参数值”的模式用“&”字符拼接成字符串
         $prestr = createLinkstring($para);
 
+        $key = file_get_contents($this->alipay_config['private_key_path']);
+        $pri = openssl_get_privatekey($key);
+        $err = openssl_error_string();
+
+        openssl_sign($prestr, $signx, $pri);
+
+        $signy = urlencode(base64_encode($signx));
+
+
         Log::record(">>>>>getSignVerify--prestr={$prestr}",Log::DEBUG);
 
         $isSgin = false;

+ 4 - 1
mobile/api/payment/alipay/lib/alipay_rsa.function.php

@@ -40,7 +40,10 @@ function rsaVerify($data, $ali_public_key_path, $sign)  {
     } catch(Exception $e){
         $msg = $e->getMessage();
     }
-    $result = (bool)openssl_verify($data, base64_decode($sign), $res);
+    $sign = urldecode($sign);
+    $sign = base64_decode($sign);
+    $result = (bool)openssl_verify($data, $sign, $res);
+    $err = openssl_error_string();
     openssl_free_key($res);    
     return $result;
 }

+ 16 - 10
mobile/control/index.php

@@ -24,10 +24,16 @@ class indexControl extends mobileHomeControl
      */
 	public function indexOp()
     {
-        $special_list = $this->mb_special->getMbSpecialItemUsableListByIDEx(self::HomeSpecialID);
-        $sale_list = $this->sale_list();
+        if($_GET['type'] == 'html') {
+            $model_mb_special = Model('mb_special');
+            $data = $model_mb_special->getMbSpecialIndex();
+            $this->_output_special($data, $_GET['type']);
+        } else {
+            $special_list = $this->mb_special->getMbSpecialItemUsableListByIDEx(self::HomeSpecialID);
+            $sale_list = $this->sale_list();
 
-        $this->_output_special(array('special_list' => $special_list,'sale_list' => $sale_list),$_GET['type']);
+            $this->_output_special(array('special_list' => $special_list,'sale_list' => $sale_list),$_GET['type']);
+        }
 	}
 
     /**
@@ -169,17 +175,17 @@ class indexControl extends mobileHomeControl
      */
     private function _output_special($data,$type = 'json', $special_id = 0)
     {
-        $model_special = Model('mb_special');
+        //$model_special = Model('mb_special');
         if($type == 'html')
         {
-            $html_path = $model_special->getMbSpecialHtmlPath($special_id);
-            if(!is_file($html_path)) {
-                ob_start();
+            //$html_path = $model_special->getMbSpecialHtmlPath($special_id);
+            //if(!is_file($html_path)) {
+                //ob_start();
                 Tpl::output('list', $data['special_list']);
                 Tpl::showpage('mb_special');
-                file_put_contents($html_path, ob_get_clean());
-            }
-            header('Location: ' . $model_special->getMbSpecialHtmlUrl($special_id));
+                //file_put_contents($html_path, ob_get_clean());
+           // }
+            //header('Location: ' . $model_special->getMbSpecialHtmlUrl($special_id));
         } 
         else 
         {

+ 1 - 1
mobile/control/login.php

@@ -181,7 +181,7 @@ class loginControl extends mobileHomeControl
             $password = trim($_POST['password']);
             $validator->setValidate(Validate::smscode($code));  
             $validator->setValidate(Validate::verify_password($password));
-            $data['member_passwd'] = $password;
+            $data['member_passwd'] = md5($password);
         } elseif ($type == 'wx') {
             $openid = trim($_POST['openid']);
             $data['member_wxopenid'] = $openid;

+ 5 - 2
mobile/control/member_bonus.php

@@ -12,13 +12,16 @@ defined('InShopNC') or exit('Access Invalid!');
 
 class member_bonusControl extends mobileMemberControl
 {
-    public function __construct(){
+    public function __construct()
+    {
         parent::__construct();
     }
 
-    public function get_bonusOp(){
+    public function get_bonusOp()
+    {
         $bonus_type = $_POST['type'];
         $bonus = Model($bonus_type);
+
         if($bonus_type === 'user_bonus') {
             $user_id = $this->member_info['member_id'];
             $user_mobile = $_POST['mobile'];

+ 1 - 1
mobile/framework/function/function.php

@@ -59,7 +59,7 @@ function joutput_error($code,$message = '')
     $data['datas'] = null;
 
     Log::record("code = {$code} message = {$message}",Log::ERR);
-    
+
     echo(json_encode($data));
 }
 

+ 1 - 1
mobile/templates/default/layout/layout.php

@@ -1,4 +1,4 @@
 <?php defined('InShopNC') or exit('Access Invalid!');?>
 <?php
-require_once($tpl_file);
+require($tpl_file);
 ?>

+ 1 - 2
mobile/util/errcode.php

@@ -47,5 +47,4 @@ class errcode extends SplEnum
         }      
     }        
 }
-?>
-
+?>

Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 35 - 0
research/function_test.php


+ 8 - 2
research/research_run.php

@@ -8,12 +8,18 @@
 Base::run_test();
 
 
+//https://img.alicdn.com/bao/uploaded/i3/90919986/TB2IOb_hXXXXXa6XXXXXXXXXXXX_!!90919986.jpg
+
+$xxx = urlencode('TB2IOb_hXXXXXa6XXXXXXXXXXXX_!!90919986');
+
+
+
 //include BASE_ROOT_PATH . "/research/db.php";
-//include BASE_ROOT_PATH . "/research/function_test.php";
+include BASE_ROOT_PATH . "/research/function_test.php";
 include BASE_ROOT_PATH . "/research/sms_test.php";
 //include BASE_ROOT_PATH . "/research/wxpay.php";
 
-
+https://img.alicdn.com/bao/uploaded/i3/90919986/TB2IOb_hXXXXXa6XXXXXXXXXXXX_%21%2190919986.jpg