当前位置:首页 > CMS教程 > ecshop > 列表

ecshop后台如何去掉更新提醒,install、demo删除提醒

发布:smiling 来源: PHP粉丝网  添加日期:2014-06-19 11:18:56 浏览: 评论:0 

首先找到如下文件admin\index.php

一:删除更新提醒:(大概483行左右)注释掉或者删掉下面的代码:

  1. elseif ($_REQUEST['act'] == 'main_api'
  2.     require_once(ROOT_PATH . '/includes/lib_base.php'); 
  3.     $data = read_static_cache('api_str'); 
  4.  
  5.     if($data === false || API_TIME < date('Y-m-d H:i:s',time()-43200)) 
  6.     { 
  7.         include_once(ROOT_PATH . 'includes/cls_transport.php'); 
  8.         $ecs_version = VERSION; 
  9.         $ecs_lang = $_CFG['lang']; 
  10.         $ecs_release = RELEASE; 
  11.         $php_ver = PHP_VERSION; 
  12.         $mysql_ver = $db->version(); 
  13.         $order['stats'] = $db->getRow('SELECT COUNT(*) AS oCount, IFNULL(SUM(order_amount), 0) AS oAmount' . 
  14.     ' FROM ' .$ecs->table('order_info')); 
  15.         $ocount = $order['stats']['oCount']; 
  16.         $oamount = $order['stats']['oAmount']; 
  17.         $goods['total']   = $db->GetOne('SELECT COUNT(*) FROM ' .$ecs->table('goods'). 
  18.     ' WHERE is_delete = 0 AND is_alone_sale = 1 AND is_real = 1'); 
  19.         $gcount = $goods['total']; 
  20.         $ecs_charset = strtoupper(EC_CHARSET); 
  21.         $ecs_user = $db->getOne('SELECT COUNT(*) FROM ' . $ecs->table('users')); 
  22.         $ecs_template = $db->getOne('SELECT value FROM ' . $ecs->table('shop_config') . ' WHERE code = \'template\''); 
  23.         $style = $db->getOne('SELECT value FROM ' . $ecs->table('shop_config') . ' WHERE code = \'stylename\''); 
  24.         if($style == ''
  25.         { 
  26.             $style = '0'
  27.         } 
  28.         $ecs_style = $style
  29.         $shop_url = urlencode($ecs->url()); 
  30.  
  31.         $patch_file = file_get_contents(ROOT_PATH.ADMIN_PATH."/patch_num"); 
  32.  
  33.         $apiget = "ver= $ecs_version &lang= $ecs_lang &release= $ecs_release &php_ver= $php_ver &mysql_ver= $mysql_ver &ocount= $ocount &oamount= $oamount &gcount= $gcount &charset= $ecs_charset &usecount= $ecs_user &template= $ecs_template &style= $ecs_style &url= $shop_url &patch= $patch_file "
  34.  
  35.         $t = new transport; 
  36.         $api_comment = $t->request('http://api.ecshop.com/checkver.php'$apiget); 
  37.         $api_str = $api_comment["body"]; 
  38.         echo $api_str
  39.          
  40.         $f=ROOT_PATH . 'data/config.php';  
  41.         file_put_contents($f,str_replace("'API_TIME', '".API_TIME."'","'API_TIME', '".date('Y-m-d H:i:s',time())."'",file_get_contents($f))); 
  42.          
  43.         write_static_cache('api_str'$api_str); 
  44.     } 
  45.     else  
  46.     { 
  47.         echo $data
  48.     } 

二:install删除提醒:(大概182行左右)注释或删除下面代码:

  1. if (file_exists('../install')) 
  2.    { 
  3.        $warning[] = $_LANG['remove_install']; 
  4.    } 

三:更新提醒:(大概187行)注释或删除代码:

  1. if (file_exists('../upgrade')) 
  2.     { 
  3.         $warning[] = $_LANG['remove_upgrade']; 
  4.     } 

四:demo删除提醒:(大概192行)注释或删除下面代码:

  1. if (file_exists('../demo')) 
  2.    { 
  3.        $warning[] = $_LANG['remove_demo']; 
  4.    } 

Tags: ecshop去掉更新提醒 删除提醒

分享到: