Exemple #1
0
 static function set($array)
 {
     if (CACHE_ON && self::$cache_file) {
         if (MEMCACHE_ON) {
             AZMemcache::do_put("acache:" . self::$cache_file, $array, self::$expire);
         } else {
             @file_put_contents(self::$cache_file, addslashes(serialize($array)));
         }
         self::$arr_cache = $array;
     }
     return true;
 }
Exemple #2
0
 static function getProvinces($update_cache = 0, $delcache = false)
 {
     if (!CGlobal::$provinces || $delcache || $update_cache) {
         if (AZArrCache::is_not_cached('provinces_arr', 0, '', $delcache)) {
             if (!$delcache) {
                 $re = DB::query('SELECT id, name, brief_name, status, area FROM province ORDER BY position', __LINE__ . __FILE__);
                 $topProvinces = array();
                 $ortherProvinces = array();
                 if ($re) {
                     while ($province = mysql_fetch_assoc($re)) {
                         $province['ebname'] = AZLib::safe_title($province['name']);
                         if ($province['status'] == "HOME") {
                             $topProvinces[$province['id']] = $province;
                         } else {
                             $ortherProvinces[$province['id']] = $province;
                         }
                     }
                 }
                 $topProvinces[0] = array('id' => 0, 'name' => 'Toàn quốc', 'brief_name' => 'Toàn quốc', 'status' => 'SHOW', 'area' => '1', 'ebname' => 'Toan-Quoc');
                 CGlobal::$provinces = $topProvinces + $ortherProvinces;
                 AZArrCache::set(CGlobal::$provinces);
             } else {
                 foreach (CGlobal::$my_server as $server) {
                     //Tạo lại file js cho city
                     @fopen("http://{$server}/citygen.php", "r");
                 }
                 $js_ver = rand(1, 1000);
                 AZMemcache::do_put("city_ver:", $js_ver);
             }
         } else {
             CGlobal::$provinces = AZArrCache::$arr_cache;
             AZArrCache::$arr_cache = array();
         }
     }
 }
Exemple #3
0
 function produc_hot()
 {
     if (!User::is_login()) {
         echo 'no_login';
         exit;
     }
     if (!User::have_permit(ADMIN_CATEGORY)) {
         echo 'no_perm';
         exit;
     }
     $cat_id = AZLib::getParam('cat_id', '0');
     $item_ids = AZLib::getParam('item_ids');
     $vip_item_ids = AZLib::getParam('vip_item_ids');
     if ($item_ids == '' && $vip_item_ids == '') {
         //$file = DIR_CACHE."html/product_hot/data_".$cat_id.".js";
         //if(@file_exists($file)){
         //	StaticCache::delCache("product_hot/data_".$cat_id,"js");
         //}
         $sql = "update configs set conf_val = '' where conf_key = 'product_hot_" . $cat_id . "'";
         $sql_vip = "delete from item_vip where product_hot_cat_id =" . $cat_id;
         DB::query($sql);
         DB::query($sql_vip);
         AZLib::get_item_vip(0, true);
         AZLib::get_config(0, true);
         exit;
     }
     // item thuong
     $item_array = explode(',', $item_ids);
     $items = array();
     foreach ($item_array as $item) {
         if ($item) {
             $items[] = intval($item);
         }
     }
     $id_items_after = '';
     $item_ids = join(',', $items);
     $sql = "delete from configs where conf_key = 'product_hot_" . $cat_id . "'";
     DB::query($sql);
     AZLib::get_config(0, true);
     if ($item_ids != '') {
         $sql = "SELECT id, name, brief, price, currency_id, img_url\r\n\t\t\t\t\t   FROM item \r\n\t\t\t\t\t   WHERE status = 1 AND id IN({$item_ids})";
         $result = DB::query($sql);
         $i = 0;
         while ($item = mysql_fetch_array($result)) {
             if (isset($item['id'])) {
                 $id_items[$i] = $item['id'];
                 $i++;
             }
         }
         $id_items_after = '';
         for ($i = 0; $i < count($item_array); $i++) {
             for ($j = 0; $j < count($id_items); $j++) {
                 if ($item_array[$i] == $id_items[$j]) {
                     $id_items_after .= $id_items[$j] . ",";
                 }
             }
         }
         if ($id_items_after != '') {
             $id_items_after = substr($id_items_after, 0, -1);
         }
         $sql_check = "SELECT id FROM configs WHERE conf_key = 'product_hot_" . $cat_id . "'";
         DB::query($sql_check);
         $row = DB::fetch_row();
         if ($row['id'] != '') {
             $sql = "UPDATE configs SET conf_val = '" . $id_items_after . "' WHERE conf_key = 'product_hot_" . $cat_id . "'";
             DB::query($sql);
             AZLib::get_config(0, true);
             // xoa cache config
         } else {
             $sql = "INSERT INTO configs (`conf_key`,`conf_val`) values ('product_hot_" . $cat_id . "','" . $id_items_after . "')";
             DB::query($sql);
             AZLib::get_config(0, true);
             // xoa cache config
         }
     }
     //item vip
     $vip_item_array = explode(',', $vip_item_ids);
     $vip_items = array();
     foreach ($vip_item_array as $vip_item) {
         if ($vip_item) {
             $vip_items[] = intval($vip_item);
         }
     }
     $vip_id_items_after = '';
     $vip_item_ids = join(',', $vip_items);
     $sql_vip = "delete from item_vip where product_hot_cat_id =" . $cat_id;
     DB::query($sql_vip);
     AZLib::get_item_vip(0, true);
     if ($vip_item_ids != '') {
         $sql = "SELECT id, name, brief, price, currency_id, img_url\r\n\t\t\t\t\t   FROM item \r\n\t\t\t\t\t   WHERE status > 0 AND id IN({$vip_item_ids})";
         $result = DB::query($sql);
         while ($item = mysql_fetch_array($result)) {
             if (isset($item['id'])) {
                 $vip_id_items_after .= $item['id'] . ",";
                 $sql_check = "select count(*) AS total from item_vip where item_id = " . $item['id'] . " And product_hot_cat_id=" . $cat_id;
                 DB::query($sql_check);
                 $row = DB::fetch_row();
                 if ($row['total'] == 0) {
                     $sql = "insert into item_vip (`item_id`,`product_hot_cat_id`) values (" . $item['id'] . "," . $cat_id . ")";
                     DB::query($sql);
                     AZLib::get_item_vip(0, true);
                 }
             }
         }
         if ($vip_id_items_after != '') {
             $vip_id_items_after = substr($vip_id_items_after, 0, -1);
         }
     }
     $id_items_after .= '|' . $vip_id_items_after;
     // check file
     //if(@file_exists(DIR_CACHE."html/product_hot/data_".$cat_id.".js")){
     //StaticCache::delCache("product_hot/data_".$cat_id,"js");
     //}
     AZArrCache::del_cache('arrProductHotCache');
     echo $id_items_after;
     exit;
 }
Exemple #4
0
if (REWRITE_ON) {
    ob_start();
    //start buffering//@ob_start('ob_gzhandler');
}
require_once ROOT_PATH . 'core/AutoLoader.php';
CGlobal::$my_server = $server_list;
CGlobal::$img_server = $img_server;
CGlobal::$img_ftp_server = $img_ftp_server;
define('CPC_URL', WEB_DIR . AZRewrite::formatUrl("?page=cpc_ad"));
if (MEMCACHE_ON) {
    CGlobal::$memcache_server = $memcache_server;
}
unset($memcache_server, $server_list, $img_server, $img_ftp_server);
if (isset($_REQUEST['trigger']) && (int) $_REQUEST['trigger'] == 1) {
    //Xoá cache tự động
    AZArrCache::del_cache();
    AZCache::auto_delete();
    AZNet::del_page_cache();
    StaticCache::delCache();
    exit;
}
$is_search_engine_array = array("Google", "Fast", "Slurp", "Ink", "Atomz", "Scooter", "Crawler", "MSNbot", "Poodle", "Genius");
$is_search_engine = 0;
foreach ($is_search_engine_array as $key => $val) {
    if (strstr($_SERVER['HTTP_USER_AGENT'], $val)) {
        $is_search_engine++;
    }
}
if (isset($_GET['page']) && $_GET['page'] == 'error') {
    define('ERROR_PAGE', 1);
} else {