標籤:
該偏文章模板堂搜集總結,包括ecshop前台著作權,ecshop後台著作權,一個都不留,乾乾淨淨,推薦收藏
一、去掉網頁標題 Powered by ECShop
開啟includes/lib_main.php 檔案
尋找:
$page_title = $GLOBALS[‘_CFG‘][‘shop_title‘] . ‘ - ‘ . ‘Powered by ECShop‘;
替換為:
$page_title = $GLOBALS[‘_CFG‘][‘shop_title‘];
二、去掉底部亂跑的 Powered by ecshop
開啟 js/common.js,尋找
onload = function()
{
var link_arr = document.getElementsByTagName(String.fromCharCode(65));
var link_str;
var link_text;
var regg, cc;
var rmd, rmd_s, rmd_e, link_eorr = 0;
var e = new Array(97, 98, 99,
100, 101, 102, 103, 104, 105, 106, 107, 108, 109,
110, 111, 112, 113, 114, 115, 116, 117, 118, 119,
120, 121, 122
);
try
{
for(var i = 0; i < link_arr.length; i++)
{
link_str = link_arr[i].href;
if (link_str.indexOf(String.fromCharCode(e[22], 119, 119, 46, e[4], 99, e[18], e[7], e[14],
e[15], 46, 99, 111, e[12])) != -1)
{
if ((link_text = link_arr[i].innerText) == undefined)
{
throw "noIE";
}
regg = new RegExp(String.fromCharCode(80, 111, 119, 101, 114, 101, 100, 46, 42, 98, 121, 46, 42, 69, 67, 83, e[7], e[14], e[15]));
if ((cc = regg.exec(link_text)) != null)
{
if (link_arr[i].offsetHeight == 0)
{
break;
}
link_eorr = 1;
break;
}
}
else
{
link_eorr = link_eorr ? 0 : link_eorr;
continue;
}
}
} // IE
catch(exc)
{
for(var i = 0; i < link_arr.length; i++)
{
link_str = link_arr[i].href;
if (link_str.indexOf(String.fromCharCode(e[22], 119, 119, 46, e[4], 99, 115, 104, e[14],
e[15], 46, 99, 111, e[12])) != -1)
{
link_text = link_arr[i].textContent;
regg = new RegExp(String.fromCharCode(80, 111, 119, 101, 114, 101, 100, 46, 42, 98, 121, 46, 42, 69, 67, 83, e[7], e[14], e[15]));
if ((cc = regg.exec(link_text)) != null)
{
if (link_arr[i].offsetHeight == 0)
{
break;
}
link_eorr = 1;
break;
}
}
else
{
link_eorr = link_eorr ? 0 : link_eorr;
continue;
}
}
} // FF
try
{
rmd = Math.random();
rmd_s = Math.floor(rmd * 10);
if (link_eorr != 1)
{
rmd_e = i - rmd_s;
link_arr[rmd_e].href = String.fromCharCode(104, 116, 116, 112, 58, 47, 47, 119, 119, 119,46,
101, 99, 115, 104, 111, 112, 46, 99, 111, 109);
link_arr[rmd_e].innerHTML = String.fromCharCode(
80, 111, 119, 101, 114, 101, 100,38, 110, 98, 115, 112, 59, 98,
121,38, 110, 98, 115, 112, 59,60, 115, 116, 114, 111, 110, 103,
62, 60,115, 112, 97, 110, 32, 115, 116, 121,108,101, 61, 34, 99,
111, 108, 111, 114, 58, 32, 35, 51, 51, 54, 54, 70, 70, 34, 62,
69, 67, 83, 104, 111, 112, 60, 47, 115, 112, 97, 110, 62,60, 47,
115, 116, 114, 111, 110, 103, 62);
}
}
catch(ex)
{
}
}
刪除這段代碼。
再開啟 library/page_footer.lbi 檔案,尋找並刪除:
{foreach from=$lang.p_y item=pv}{$pv}{/foreach}{$licensed}
三、修改檔案代碼頭部的Generator標記,有2個方法修改:
修改檔案:includes/cls_ecshop.php
尋找:
define(‘APPNAME’, ‘ECSHOP’);
修改為:
define(‘APPNAME’, ‘自訂的網站代號’);
修改檔案:includes/cls_template.php
尋找:
/* 在頭部加入版本資訊 */
$source = preg_replace(‘/<head>/i‘, "<head>\r\n<meta name=\"Generator\" content=\"" . APPNAME .‘ ‘ . VERSION . "\" />", $source);
注釋這段代碼!
修改為:
/* 在頭部加入版本資訊
$source = preg_replace(‘/<head>/i‘, "<head>\r\n<meta name=\"Generator\" content=\"" . APPNAME .‘ ‘ . VERSION . "\" />", $source); */
四、去掉後台兩張 ECSHOP的圖片。直接修改掉這兩張圖片即可:
admin/images/ecshop_logo.gif
admin/images/login.png
五、後台右上方的“關於ECSHOP”
開啟admin/templates/top.htm 檔案,尋找並刪除:
<li><a href="index.php?act=about_us" target="main-frame">{$lang.about}</a></li>
六、後台中部 ECSHOP 管理中心, 和底部的著作權:
開啟language/zh_cn/admin/common.php
尋找:
$_LANG[‘cp_home‘] = ‘ECSHOP 管理中心‘;
$_LANG[‘copyright‘] = ‘著作權 © 2005-2012 上海商派網路科技有限公司,並著作權所有,並保留一切權利。‘;
替換成:
$_LANG[‘cp_home‘] = ‘後台管理中心‘;
$_LANG[‘copyright‘] = ‘管理,就是這麼簡單!‘;
七、與官方網站地址通訊的地方修改和檔案!
開啟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>
八、刪除背景“雲提醒”
admin/cloud.php
尋找:
$api_arr[‘content‘]=‘<li class="cloud_close">‘.$message[‘0‘].‘ ‘.$_LANG[‘cloud_no_priv‘].‘<img onclick="cloud_close( ‘.$message[‘1‘].‘)" src="images/no.gif"></li>‘;
替換成:
$api_arr[‘content‘]=‘‘;
尋找:
$api_arr[‘content‘]=‘<li class="cloud_close">‘.$message[‘0‘].‘ ‘.$message[‘2‘].‘</li>‘;
替換成
$api_arr[‘content‘]=‘‘;
3、在MYSQL資料庫的資料表:shop_config中尋找欄位code值為 certi 的記錄,其值為:http://service.shopex.cn/openapi/api.php ,修改為一個錯誤的網址!
如:http://www.ecshoptemplate.com/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尋找;刪除之
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;
全部注釋掉
最新ecshop v2.7.3版本去著作權完全版