网站地图    收藏   

主页 > 后端 > ecshop教程 >

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

来源:自学PHP网    时间:2014-11-28 23:31 作者: 阅读:

[导读] 首先找到如下文件admin index php一:删除更新提醒:(大概483行左右)注释掉或者删掉下面的代码:elseif($_REQUEST[ 39;act 39;]== 39;main_api 39;){require_once(ROOT_PATH 39; includes lib_b...

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

首先找到如下文件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.    } 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论