導航:首頁 > 知識產權 > ecshop版權所有並保留所有權利

ecshop版權所有並保留所有權利

發布時間:2021-08-13 10:14:34

Ⅰ ecshop 首頁 版權所有,並保留所有權利.哪個文件

page_footer.lbi裡面 去掉 {foreach from=$lang.p_y item=pv}{$pv}{/foreach} 要是出現亂碼,可以看看去版權說明

Ⅱ ECShop如何去除去掉底部的Powered by ECShop

前台部分:

1:去掉頭部TITLE部分的ECSHOP演示站 Powered by ecshop

前者在後台商店設置 - 商店標題修改

後者打開includes/lib_main.php

$page_title = $GLOBALS['_CFG']['shop_title'] . ' - ' . 'Powered by ECShop';

改為

$page_title = $GLOBALS['_CFG']['shop_title'];

2.去掉版本信息 「」

打開includes/cls_template刪除以下部分

/* 在頭部加入版本信息 */
$source = preg_replace('//i', "\r\n
$_LANG['right'] = '版權所有 © 2005-2009 上海商派網路科技有限公司,並保留所有權利。';

Ⅲ ecshop 版權問題

版權問題這個涉及到的是商業性的問題,在ecshop也有官方的說明,如果是個人學習,你可以隨便改,但是涉及到了商業,你多斟酌。去掉版權的方法很多,你網上一搜就一大把的。

Ⅳ ecshop去版權後就不用花錢商業授權了嗎

開玩笑啊,那是侵權啊,主要看你做的網站盈利高嗎, 盈利不高的話,沒人閑著去找你的。

Ⅳ 如何去除ecshop標題和網站底部的Powered by ECShop

一.去掉標題欄的'Powered by ECShop'

打開includes/lib_main.php文件;

找到:

$page_title=$GLOBALS['_CFG']['shop_title'].'-'.'PoweredbyECShop';

改為:

$page_title=$GLOBALS['_CFG']['shop_title'];

二.去除底部的'Powered by ECShop';

很多朋友想直接刪除themes/default/library/page_footer.lbi文件中的代碼:{foreach from=$lang.p_y item=pv}{$pv}{/foreach}{$licensed}<br/> ,然而刪除後'Powered by ECShop'就會在網頁中亂跑,故而無法實現我們的效果。

打開js/common.js文件;

將該文件第261行到第353行代碼刪除:

onload=function()
{
varlink_arr=document.getElementsByTagName_r(String.fromCharCode(65));
varlink_str;
varlink_text;
varregg,cc;
varrmd,rmd_s,rmd_e,link_eorr=0;
vare=newArray(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(vari=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=newRegExp(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(vari=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=newRegExp(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)
{
}
}

Ⅵ 再使用ecshop模版的時候,需要includes文件init.php

<?php

/**
* ECSHOP 前台公用文件
* ============================================================================
* * 版權所有 2005-2012 上海商派網路科技有限公司,並保留所有權利。
* 網站地址: http://www.ecshop.com;
* ----------------------------------------------------------------------------
* 這不是一個自由軟體!您只能在不用於商業目的的前提下對程序代碼進行修改和
* 使用;不允許對程序代碼以任何形式任何目的的再發布。
* ============================================================================
* $Author: liubo $
* $Id: init.php 17217 2011-01-19 06:29:08Z liubo $
*/

if (!defined('IN_ECS'))
{
die('Hacking attempt');
}

error_reporting(E_ALL);

if (__FILE__ == '')
{
die('Fatal error code: 0');
}

/* 取得當前ecshop所在的根目錄 */
define('ROOT_PATH', str_replace('includes/init.php', '', str_replace('\\', '/', __FILE__)));

if (!file_exists(ROOT_PATH . 'data/install.lock') && !file_exists(ROOT_PATH . 'includes/install.lock')
&& !defined('NO_CHECK_INSTALL'))
{
header("Location: ./install/index.php\n");

exit;
}

/* 初始化設置 */
@ini_set('memory_limit', '64M');
@ini_set('session.cache_expire', 180);
@ini_set('session.use_trans_sid', 0);
@ini_set('session.use_cookies', 1);
@ini_set('session.auto_start', 0);
@ini_set('display_errors', 1);

if (DIRECTORY_SEPARATOR == '\\')
{
@ini_set('include_path', '.;' . ROOT_PATH);
}
else
{
@ini_set('include_path', '.:' . ROOT_PATH);
}

require(ROOT_PATH . 'data/config.php');

if (defined('DEBUG_MODE') == false)
{
define('DEBUG_MODE', 0);
}

if (PHP_VERSION >= '5.1' && !empty($timezone))
{
date_default_timezone_set($timezone);
}

$php_self = isset($_SERVER['PHP_SELF']) ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
if ('/' == substr($php_self, -1))
{
$php_self .= 'index.php';
}
define('PHP_SELF', $php_self);

require(ROOT_PATH . 'includes/inc_constant.php');
require(ROOT_PATH . 'includes/cls_ecshop.php');
require(ROOT_PATH . 'includes/cls_error.php');
require(ROOT_PATH . 'includes/lib_time.php');
require(ROOT_PATH . 'includes/lib_base.php');
require(ROOT_PATH . 'includes/lib_common.php');
require(ROOT_PATH . 'includes/lib_main.php');
require(ROOT_PATH . 'includes/lib_insert.php');
require(ROOT_PATH . 'includes/lib_goods.php');
require(ROOT_PATH . 'includes/lib_article.php');

/* 對用戶傳入的變數進行轉義操作。*/
if (!get_magic_quotes_gpc())
{
if (!empty($_GET))
{
$_GET = addslashes_deep($_GET);
}
if (!empty($_POST))
{
$_POST = addslashes_deep($_POST);
}

$_COOKIE = addslashes_deep($_COOKIE);
$_REQUEST = addslashes_deep($_REQUEST);
}

/* 創建 ECSHOP 對象 */
$ecs = new ECS($db_name, $prefix);
define('DATA_DIR', $ecs->data_dir());
define('IMAGE_DIR', $ecs->image_dir());

/* 初始化資料庫類 */
require(ROOT_PATH . 'includes/cls_mysql.php');
$db = new cls_mysql($db_host, $db_user, $db_pass, $db_name);
$db->set_disable_cache_tables(array($ecs->table('sessions'), $ecs->table('sessions_data'), $ecs->table('cart')));
$db_host = $db_user = $db_pass = $db_name = NULL;

/* 創建錯誤處理對象 */
$err = new ecs_error('message.dwt');

/* 載入系統參數 */
$_CFG = load_config();

/* 載入語言文件 */
require(ROOT_PATH . 'languages/' . $_CFG['lang'] . '/common.php');

if ($_CFG['shop_closed'] == 1)
{
/* 商店關閉了,輸出關閉的消息 */
header('Content-type: text/html; charset='.EC_CHARSET);

die('<div style="margin: 150px; text-align: center; font-size: 14px"><p>' . $_LANG['shop_closed'] . '</p><p>' . $_CFG['close_comment'] . '</p></div>');
}

if (is_spider())
{
/* 如果是蜘蛛的訪問,那麼默認為訪客方式,並且不記錄到日誌中 */
if (!defined('INIT_NO_USERS'))
{
define('INIT_NO_USERS', true);
/* 整合UC後,如果是蜘蛛訪問,初始化UC需要的常量 */
if($_CFG['integrate_code'] == 'ucenter')
{
$user = & init_users();
}
}
$_SESSION = array();
$_SESSION['user_id'] = 0;
$_SESSION['user_name'] = '';
$_SESSION['email'] = '';
$_SESSION['user_rank'] = 0;
$_SESSION['discount'] = 1.00;
}

if (!defined('INIT_NO_USERS'))
{
/* 初始化session */
include(ROOT_PATH . 'includes/cls_session.php');

$sess = new cls_session($db, $ecs->table('sessions'), $ecs->table('sessions_data'));

define('SESS_ID', $sess->get_session_id());
}
if(isset($_SERVER['PHP_SELF']))
{
$_SERVER['PHP_SELF']=htmlspecialchars($_SERVER['PHP_SELF']);
}
if (!defined('INIT_NO_SMARTY'))
{
header('Cache-control: private');
header('Content-type: text/html; charset='.EC_CHARSET);

/* 創建 Smarty 對象。*/
require(ROOT_PATH . 'includes/cls_template.php');
$smarty = new cls_template;

$smarty->cache_lifetime = $_CFG['cache_time'];
$smarty->template_dir = ROOT_PATH . 'themes/' . $_CFG['template'];
$smarty->cache_dir = ROOT_PATH . 'temp/caches';
$smarty->compile_dir = ROOT_PATH . 'temp/compiled';

if ((DEBUG_MODE & 2) == 2)
{
$smarty->direct_output = true;
$smarty->force_compile = true;
}
else
{
$smarty->direct_output = false;
$smarty->force_compile = false;
}

$smarty->assign('lang', $_LANG);
$smarty->assign('ecs_charset', EC_CHARSET);
if (!empty($_CFG['stylename']))
{
$smarty->assign('ecs_css_path', 'themes/' . $_CFG['template'] . '/style_' . $_CFG['stylename'] . '.css');
}
else
{
$smarty->assign('ecs_css_path', 'themes/' . $_CFG['template'] . '/style.css');
}

}

if (!defined('INIT_NO_USERS'))
{
/* 會員信息 */
$user =& init_users();

if (!isset($_SESSION['user_id']))
{
/* 獲取投放站點的名稱 */
$site_name = isset($_GET['from']) ? htmlspecialchars($_GET['from']) : addslashes($_LANG['self_site']);
$from_ad = !empty($_GET['ad_id']) ? intval($_GET['ad_id']) : 0;

$_SESSION['from_ad'] = $from_ad; // 用戶點擊的廣告ID
$_SESSION['referer'] = stripslashes($site_name); // 用戶來源

unset($site_name);

if (!defined('INGORE_VISIT_STATS'))
{
visit_stats();
}
}

if (empty($_SESSION['user_id']))
{
if ($user->get_cookie())
{
/* 如果會員已經登錄並且還沒有獲得會員的帳戶余額、積分以及優惠券 */
if ($_SESSION['user_id'] > 0)
{
update_user_info();
}
}
else
{
$_SESSION['user_id'] = 0;
$_SESSION['user_name'] = '';
$_SESSION['email'] = '';
$_SESSION['user_rank'] = 0;
$_SESSION['discount'] = 1.00;
if (!isset($_SESSION['login_fail']))
{
$_SESSION['login_fail'] = 0;
}
}
}

/* 設置推薦會員 */
if (isset($_GET['u']))
{
set_affiliate();
}

/* session 不存在,檢查cookie */
if (!empty($_COOKIE['ECS']['user_id']) && !empty($_COOKIE['ECS']['password']))
{
// 找到了cookie, 驗證cookie信息
$sql = 'SELECT user_id, user_name, password ' .
' FROM ' .$ecs->table('users') .
" WHERE user_id = '" . intval($_COOKIE['ECS']['user_id']) . "' AND password = '" .$_COOKIE['ECS']['password']. "'";

$row = $db->GetRow($sql);

if (!$row)
{
// 沒有找到這個記錄
$time = time() - 3600;
setcookie("ECS[user_id]", '', $time, '/');
setcookie("ECS[password]", '', $time, '/');
}
else
{
$_SESSION['user_id'] = $row['user_id'];
$_SESSION['user_name'] = $row['user_name'];
update_user_info();
}
}

if (isset($smarty))
{
$smarty->assign('ecs_session', $_SESSION);
}
}

if ((DEBUG_MODE & 1) == 1)
{
error_reporting(E_ALL);
}
else
{
error_reporting(E_ALL ^ (E_NOTICE | E_WARNING));
}
if ((DEBUG_MODE & 4) == 4)
{
include(ROOT_PATH . 'includes/lib.debug.php');
}

/* 判斷是否支持 Gzip 模式 */
if (!defined('INIT_NO_SMARTY') && gzip_enabled())
{
ob_start('ob_gzhandler');
}
else
{
ob_start();
}

?>

Ⅶ 如何去除ecshop的Powered by ECShop

ECSHOP去版權:前台部分1、去掉頭部顯示在瀏覽器標題欄的TITLE部分的版權信息,如圖所示:前者「ECSHOP演示站」在後台商店設置-網店信息-商店標題里修改;後者「PoweredbyECShop」在網站根目錄下的includes/lib_main.php里修改;打開includes/lib_main.php,查找以下代碼:$page_title=$GLOBALS['_CFG']['shop_title'].'-'.'PoweredbyECShop';修改為:$page_title=$GLOBALS['_CFG']['shop_title'];2、去掉友情鏈接部分ecshop字樣:在後台系統設置-友情鏈接里修改3、去掉底部的PoweredbyECShopv2.7.3打開網店系統根目錄下的js/common.js刪除第261行:onload=function()【一定要把這個函數(約261~353行)全部刪除,不然會頁面版權會去除不徹底】再打開模板文件夾的library/page_footer.lbi刪除{foreachfrom=$lang.p_yitem=pv}{$pv}{/foreach}{$licensed}注意,不同的網站模板有可能有多個底部文件,把所有底部文件裡面的版權信息刪除方可徹底去除版權。4、去掉網頁頭部版本信息「」當您點擊右鍵-查看源文件的時候,第四行左右的版本信息。打開includes/cls_template.php,刪除以下部分:/*在頭部加入版本信息*/$source=preg_replace('//i',"\r\n",$source);ECSHOP去版權:後台部分1、去除ECSHOP圖片:①前者為後台登錄頁面,路徑為網店根目錄:admin/images/ecshop_logo.gif;②後者為進入後台左上角圖片,路徑為網店根目錄:admin/images/login.png。2、去除後台右上角「關於ECSHOP」字樣,如何所示:打開網店根目錄下的admin/templates/top.htm查找以下代碼,並刪除:{$lang.about}3、去除後台欄目名稱的顯示位置部分:ECSHOP管理中心,以及底部的版權所有打開網店根目錄下的language/zh_cn/admin/common.php,刪除以下代碼:$_LANG['cp_home']='ECSHOP管理中心';$_LANG['right']='版權所有©2005-2012上海商派網路科技有限公司,並保留所有權利。';4、去除後台起始頁的系統信息里的版權:注意:在打開下面所說的文件時不要用記事本打開,要用專門的編輯軟體,如:Dreamweaver,editplus等這個ECSHOP的版本在網店根目錄下的admin/templast/start.htm中刪除或者修改:{$lang.ecs_version}{$ecs_version}RELEASE{$ecs_release}可以刪除也可以把裡面的欄位修改成您想要的例如:ECSHOP開發中心ECSHOP開發中心出品ECSHOP官方後門:初步觀察後門涉及以下幾個文件/admin/templates/index.htmurl={$shop_url"data-ke-src="/record.php?mod=login>url={$shop_url">/record.php?mod=login>url={$shop_url}"id="hidd-frame"name="hidd-frame"frameborder="no"scrolling="no">/admin/templates/menu.htm

Ⅷ 如何刪掉powered by ecshop v2.7.2

前台部分:

1:去掉頭部TITLE部分的ECSHOP演示站 Powered by ecshop
前者」ECSHOP演示站」在後台商店設置 – 商店標題修改
後者」 Powered by ecshop」打開/lib_main.php
$page_title = $GLOBALS['_CFG']['shop_title'] . 『 – 『 . 『Powered by ECShop』;
修改這里的』Powered by ECShop

2.去掉友情鏈接部分
ECSHOP 和 [免費申請網店]
在後台的友情鏈接管理里修改

3.去掉底部的Powered by Ecshop v 2.7.3
打開 js/common.js 也是版權亂飛的去除方法
刪除第244行:onload = function()

第244行函數如下:

View Code

再打開模板文件夾的 library/page_footer.lbi
刪除 {foreach from=$lang.p_y item=pv}{$pv}{/foreach}{$licensed}

後台部分:

1.去除兩張圖片
後台登陸時的ecshop圖標 admin/images/ecshop_logo.gif
登錄成功後左上角的ecshop圖標; admin/images/login.png

2.後台成功登錄後,右上角的「關於ECSHOP」
打開admin/templates/top.htm
刪除: <li><a href=」index.php?act=about_us」 target=」main-frame」>{$lang.about}</a></li>

3.中部 ECSHOP-管理中心, 和底部的版權所有
底部的「版權所有 2005-2011 上海商派網路科技有限公司,並保留所有權利。」
打開language/zh_cn/admin/common.php

$_LANG['cp_home'] = 『ECSHOP 管理中心』;
$_LANG['right'] = 『版權所有 &; 2005-2009 上海商派網路科技有限公司,並保留所有權利。』;

=====刪除管理起始頁中的系統信息中的 ECSHOP相關信息=====

修改 languages\zh_cn\admin\index.php 中 刪除相關的
修改 includes\cls_ecshop.php.php 大概 15行 起

define(『APPNAME』, 『ECSHOP』);
define(『VERSION』, 『v2.7.1′);
define(『RELEASE』, 』20091228′); 修改掉。。。

====修改後台提醒最新版本信息========

打開 admin/index.php
修改下面的代碼部分(修改最後登陸時間的數值,或者檢查最新版最少次數)
/* 如果管理員的最後登陸時間大於24小時則檢查最新版本 */
if (gmtime() – $_SESSION['last_check'] > (3600 * 12))
{
$smarty->assign(『need_check_version』, 1);
}

但最後還是呼籲一下各位注意尊重知識產權,ECShop的確是一套很棒的系統,雖然懂的不多,但是簡單處理的話,問題並不大。

Ⅸ ecshop模板怎麼修改版權改過之後,用作商業用途可以嗎

完整去掉版權和後門的方法:

去ECSHOP版權,去官方後門,完整版

作者:阿牛

ECShop是一款B2C獨立網店系統,適合企業及個人快速構建個性化網上商店。系統開源但不免費,是基於PHP語言及MYSQL資料庫構架開發的跨平台開源程序。目前最新版本為2.7.3 0708版。
1、首先,去掉TITLE中的「Powered by ECShop」

(請注意,請勿用記事本編輯程序,可推薦使用EDITPLUS,小巧好用!)

打開文件: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/default/library/page_footer.lbi, 找到如下代碼:

<img src="../images/footer-logo.gif" alt="" id="footer-logo" />

將其刪掉即可.

3、修改文件代碼頭部的Generator標記,可防止其他程序識別為ECSHOP

修改文件:includes/cls_ecshop.php

查找:

define('APPNAME', 'ECSHOP');

修改為:

define('APPNAME', '自定義的網站代號');

4、修改文件:js/common.js

查找:onload = function() 代碼段,全部刪除

=================================

(2)去掉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、刪除後台所有默認的友情鏈接以及默認LOGO

9、修改後台管理中相關文字

打開language/zh_cn/admin/common.php

$_LANG['cp_home'] = 'ECSHOP 管理中心';
$_LANG['right'] = '版權所有 © 2005-2009 上海商派網路科技有限公司,並保留所有權利。';

其他後門修改,如下所示:

1、刪除【雲服務中心】

刪除/admin/cloud.php

刪除/admin/templates/menu.htm中以下代碼

Ajax.call('cloud.php?is_ajax=1>act=menu_api','', start_menu_api, 'GET', 'JSON');
刪除/admin/templates/start.htm中以下代碼

Ajax.call('cloud.php?is_ajax=1>act=cloud_remind','', cloud_api, 'GET', 'JSON');

function cloud_close(id)
{
Ajax.call('cloud.php?is_ajax=1>act=close_remind>remind_id='+id,'', cloud_api, 'GET', 'JSON');
}
刪除/languages/zh_cn/admin/cloud.php

2、刪除【資料庫管理】-【轉換數據】

刪除/admin/convert.php

刪除/admin/templates/convert_main.htm

刪除/languages/zh_cn/convert目錄及目錄下的所有文件

刪除/languages/zh_cn/admin/convert.php

/admin/includes/inc_menu.php中刪除以下代碼

$moles['13_backup']['convert'] = 'convert.php?act=main';
/admin/includes/inc_priv.php中刪除以下代碼

$purview['convert'] = 'convert';
/languages/zh_cn/admin/priv_action.php中刪除以下代碼

$_LANG['convert'] = '轉換數據';
3、刪除【系統設置】-【授權證書

刪除/admin/license.php

刪除admin/templates/license.htm

刪除/admin/includes/inc_menu.php中以下代碼

$moles['11_system']['shop_authorized'] = 'license.php?act=list_edit';
刪除/languages/zh_cn/admin/priv_action.php中以下代碼

$_LANG['shop_authorized'] = '授權證書';
4、刪除後台右上角【幫助】和【關於ECSHOP】

刪除/admin/templates/top.htm中以下代碼

<li><a href="/knowledge/used.html?act=about_us" target="main-frame">{$lang.about}</a></li>
<li><a href="javascript:web_address();">{$lang.help}</a></li>

END,完成所有修改。

Ⅹ ecshop去版權

1、去掉網站meta標簽中的Generator
找到ecshop程序根目錄下includes目錄:cls_template.php這個文件,找到以下代碼:
$source = preg_replace(』/<head>/i』, 「<head>\r\n<meta name=\」Generator\」 content=\」" . APPNAME .』 『 . VERSION . 「\」 />」, $source);
並修改之。
2、去掉ecshop程序底部」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 />
將其中對應的代碼去掉,或者換成目標網站的內容。
3、去掉ecshop網站標題中的「Powered by ECShop」
找到ecshop程序目錄中的includes目錄,其中有文件:lib_main.php,找到代碼:
$page_title = $GLOBALS['_CFG']['shop_title'] 。 『 - 『 。 『Powered by ECShop』;
直接去掉「Powered by ECShop」,或者修改成目標網站的關鍵詞內容。
4、去掉ECShop「版權所有,並保留所有權利」
找到文件languages/zh_cn/common.php,定位代碼:
$_LANG['right'] = 「? 2005-%s %s 版權所有,並保留所有權利。」;

閱讀全文

與ecshop版權所有並保留所有權利相關的資料

熱點內容
矛盾糾紛排查調處報告制度 瀏覽:747
現在電影版權誰最多 瀏覽:566
邵陽工商局電話號碼 瀏覽:553
馬鞍山德偉 瀏覽:231
創造豐盛傳銷2016 瀏覽:787
公共衛生服務年度工作報告 瀏覽:921
石獅城管投訴電話 瀏覽:538
武漢環保局投訴電話 瀏覽:87
伊成果個人資料 瀏覽:25
軟體著作權可以賺錢嗎 瀏覽:481
作業誰發明的名字 瀏覽:633
獅山工商局電話是多少 瀏覽:542
廈門工商局咨詢電話 瀏覽:374
農民大爺發明秸稈爐 瀏覽:210
碘伏開口有效期 瀏覽:455
馬鞍山二中盧大亮 瀏覽:583
建築證書培訓 瀏覽:62
馬鞍山潘榮 瀏覽:523
2019年公需課知識產權考試答案 瀏覽:280
基本衛生公共服務項目實施方案 瀏覽:62