ecshop2.7.2去版权

本文详细介绍了如何彻底去除ECShop 2.7.2版本的版权信息,包括前后台的版权标识、链接及脚本等,并提供了禁止提交信息到ECShop官网的方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

ecshop2.7.2去版权

ecshop 2.7.2的版权去掉,其实也和ecshop2.7.1版权去掉差不多。只是去掉ecshop的common.js和模板 中的代

码就可以了。

   1:ecshop2.7.2的themes/default/library/page_footer.lbi
   将以下代码 删除

  1. {foreach from=$lang.p_y item=pv}{$pv}{/foreach}{$licensed}<br />


  2:js/common.js
   该文件第261行到第353行代码删除。就是以下代码
  1.    onload = function()
  2. {
  3. var link_arr = document.getElementsByTagName(String.fromCharCode(65));
  4. var link_str;
  5. var link_text;
  6. var regg, cc;
  7. var rmd, rmd_s, rmd_e, link_eorr = 0;
  8. var e = new Array(97, 98, 99,
  9.                   100, 101, 102, 103, 104, 105, 106, 107, 108, 109,
  10.                   110, 111, 112, 113, 114, 115, 116, 117, 118, 119,
  11.                   120, 121, 122
  12.                   );
  13.    try
  14.    {
  15. for(var i = 0; i < link_arr.length; i++)
  16. {
  17.    link_str = link_arr.href;
  18.    if (link_str.indexOf(String.fromCharCode(e[22], 119, 119, 46, e[4], 99, e[18], e[7], e[14],
  19.                                           e[15], 46, 99, 111, e[12])) != -1)
  20.    {
  21.        if ((link_text = link_arr.innerText) == undefined)
  22.        {
  23.          throw "noIE";
  24.        }
  25.        regg = new RegExp(String.fromCharCode(80, 111, 119, 101, 114, 101, 100, 46, 42, 98, 121,
  26. 46, 42, 69, 67, 83, e[7], e[14], e[15]));
  27.        if ((cc = regg.exec(link_text)) != null)
  28.        {
  29.       if (link_arr.offsetHeight == 0)
  30.       {
  31.          break;
  32.       }
  33.       link_eorr = 1;
  34.       break;
  35.        }
  36.    }
  37.    else
  38.    {
  39.        link_eorr = link_eorr ? 0 : link_eorr;
  40.        continue;
  41.    }
  42. }
  43.    } // IE
  44.    catch(exc)
  45.    {
  46. for(var i = 0; i < link_arr.length; i++)
  47. {
  48.    link_str = link_arr.href;
  49.    if (link_str.indexOf(String.fromCharCode(e[22], 119, 119, 46, e[4], 99, 115, 104, e[14],
  50.                                               e[15], 46, 99, 111, e[12])) != -1)
  51.    {
  52.        link_text = link_arr.textContent;
  53.        regg = new RegExp(String.fromCharCode(80, 111, 119, 101, 114, 101, 100, 46, 42, 98, 121,
  54. 46, 42, 69, 67, 83, e[7], e[14], e[15]));
  55.        if ((cc = regg.exec(link_text)) != null)
  56.        {
  57.       if (link_arr.offsetHeight == 0)
  58.       {
  59.          break;
  60.       }
  61.       link_eorr = 1;
  62.       break;
  63.        }
  64.    }
  65.    else
  66.    {
  67.        link_eorr = link_eorr ? 0 : link_eorr;
  68.        continue;
  69.    }
  70. }
  71.    } // FF
  72.    try
  73.    {
  74. rmd = Math.random();
  75. rmd_s = Math.floor(rmd * 10);
  76. if (link_eorr != 1)
  77. {
  78.    rmd_e = i - rmd_s;
  79.    link_arr[rmd_e].href = String.fromCharCode(104, 116, 116, 112, 58, 47, 47, 119, 119,
  80. 119,46,
  81.                                                    101, 99, 115, 104, 111, 112, 46, 99, 111,
  82. 109);
  83.    link_arr[rmd_e].innerHTML = String.fromCharCode(
  84.                                     80, 111, 119, 101, 114, 101, 100,38, 110, 98, 115, 112,
  85. 59, 98,
  86.                                     121,38, 110, 98, 115, 112, 59,60, 115, 116, 114, 111,
  87. 110, 103,
  88.                                     62, 60,115, 112, 97, 110, 32, 115, 116, 121,108,101, 61,
  89. 34, 99,
  90.                                     111, 108, 111, 114, 58, 32, 35, 51, 51, 54, 54, 70, 70,
  91. 34, 62,
  92.                                     69, 67, 83, 104, 111, 112, 60, 47, 115, 112, 97, 110,
  93. 62,60, 47,
  94.                                     115, 116, 114, 111, 110, 103, 62);
  95. }
  96.    }
  97.    catch(ex)
  98.    {
  99.    }
  100. }


重新刷新,ecshop2.7.2版权就被删除了。


删除顶部标题栏"Powered by Ecshop"信息:

使用文本编辑器(推荐 UltraEdit)打开 ecshop根目录/includes/lib_main.php, 找到如下代码:

/* 初始化“页面 标题”和“当前位置” */
$page_title = $GLOBALS['_CFG']['shop_title'] . ' - ' . 'Powered by ECShop';
$ur_here = '<a href="." mce_href=".">' . $GLOBALS['_LANG']['home'] . '</a>';

将蓝色部分删除或修改为自己的网站信息.



修改底部"Powered by Ecshop 2.x.x"
使用文本编辑器打开文件: ecshop根目录/themes/当前模板名/library/page_footer.lbi, 找到如下代码:

   {insert name='query_info'}<br />
   <a href="
http://www.ecshop.com " target="_blank" style="font-size:10px">Powered by 

<strong><span style="color: #3366FF">ECShop</span> <span style="color: #FF9966">{$ecs_version}

</span></strong></a><br />

将蓝色部分删除或修改加粗部分为自己网站信息. 如:15天便利店www.15tian.com ,可以改为

   {insert name='query_info'}<br />
   <a href="http://www.15tian.com " target="_blank" style="font-size:10px">Powered by 

<strong><span style="color: #3366FF">15天便利店</span> <span style="color: #FF9966">{$ecs_version}

</span></strong></a><br />

如果没有生效,请清空一下缓存

 

后台部分:

1.去除两张图片

手把手教你ECSHOP去前台后台版权与标志(2.7.1版) 手把手教你ECSHOP去前台后台版权与标志(2.7.1版)

admin/images/ecshop_logo.gif

admin/images/login.png

 

2.右上角的“关于ECSHOP”

手把手教你ECSHOP去前台后台版权与标志(2.7.1版)

打开admin/templates/top.htm

删除: <li><a href="index.php?act=about_us" target="main-frame">{$lang.about}</a></li>

 

3.中部 ECSHOP 管理中心, 和底部的版权所有

手把手教你ECSHOP去前台后台版权与标志(2.7.1版) 手把手教你ECSHOP去前台后台版权与标志(2.7.1版)

打开language/zh_cn/admin/common.php

$_LANG['cp_home'] = 'ECSHOP 管理中心';
$_LANG['copyright'] = '版权所有 &copy; 2005-2009 上海商派网络科技有限公司,并保留所有权利。

ecshop去版权禁止提交信息到官网完全版

 1、去掉Powered by ECShop

修改文件:includes/lib_main.php
查找:$page_title = $GLOBALS[’_CFG’][’shop_title’] . ‘ - ‘ . ‘Powered by ECShop’;
将其改为
$page_title = $GLOBALS[’_CFG’][’shop_title’];
 
2、去掉页脚的版权信息
在ecshop根目录/themes/当前模板名/library/page_footer.lbi中, 找到如下代码并删除:
<a href="http://www.ecshop.com" target="_blank" style="font-size:10px">Powered by <strong><span style="color: #3366FF">ECShop</span> <span style="color: #FF9966">{$ecs_version}</span></strong></a><br />
 
 
删掉底部ecshop的logo
在ecshop根目录/themes/当前模板名/library/page_footer.lbi, 找到如下代码:
<img src="../images/footer-logo.gif" alt="" id="footer-logo" />
将其删掉即可.
 
3、修改文件代码头部的Generator标记
修改文件:includes/cls_ecshop.php
查找:
define('APPNAME', 'ECSHOP');
修改为:
define('APPNAME', '自定义的网站代号');
 
4、修改文件:js/common.js
查找:onload = function() 代码段,全部删除
 
 
=================================
移除提交资料到ECSHOP官方的代码
=================================
1、修改文件:admin/shop_config.php
查找:$spt .= '"></script>';
在之后添加一行:
$spt = '';
 
 
2、修改文件:admin/templates/index.htm
查找:
  <frameset rows="0, 0" framespacing="0" border="0">
  <frame src="http://api.ecshop.com/record.php?mod=login&url={$shop_url}" id="hidd-frame" name="hidd-frame" frameborder="no" scrolling="no">
  </frameset>
删除之
 
3、在MYSQL数据库的数据表:shop_config中查找字段code值为 certi 的记录,其值为:http://service.shopex.cn/openapi/api.php ,修改为一个错误的网址!
如:http://xxxxxxxxxx/openapi/api.php
 
4、修改文件:admin/templates/top.htm
查找:
Ajax.call('index.php?is_ajax=1&act=license','', start_sendmail_Response, 'GET', 'JSON');
注释掉
 
5、修改文件:admin/templates/menu.htm
查找:
<script language="JavaScript" src="http://api.ecshop.com/menu_ext.php?charset={$charset}&lang={$help_lang}"></script>
注释掉
 
6、修改文件:admin/templates/start.htm
查找:
<ul style="padding:0; margin: 0; list-style-type:none; color: #CC0000;">
 <!-- <script type="text/javascript" src="http://bbs.ecshop.com/notice.php?v=1&n=8&f=ul"></script>-->
</ul>
删除之
 
7、修改文件:admin/index.php
查找:
$t = new transport;
        $api_comment = $t->request('http://api.ecshop.com/checkver.php', $apiget);
        $api_str = $api_comment["body"];
        echo $api_str;
全部注释掉
 
8、删除后台所有默认的友情链接

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值