2017-08-25 34 views
0

IM其他腳本部分並沒有在如何使用Magento的1.9.0.1禁止從Magento的

admin area >> system >> Configuration >> General > Design > Miscellaneous Scripts 

一節有什麼辦法,我可以禁用這個區域,所以沒有人可以添加任何腳本它,而不是確保但我想改變

FTP登錄 交友登錄 數據庫登錄 管理員登錄

和所有可能的領域和掃描的網站,以及未發現的惡意軟件,但仍然有人一dds將以下腳本分成

Miscellaneous Scripts 

我的網站。這裏是腳本

<script type="text/javascript"> 
function getValue() 
{ 
document.getElementById("headlineatas").style.display = 'none'; 
} 
</script> 
<div id="headlineatas"> 
<div id="topbar"> 
</div> 
<div id="adsground"> 
<p align="left"><h3></h3></p> 
<script type="text/javascript"> 
$(document).ready(function(){ 
$('div#b_icon1').hide(); 
$('div#b_icon2').hide(); 
$('div#b_icon3').hide(); 
$("div#h_icon1").mouseover(function() { 
$('div#h_icon1').hide(); 
$('div#b_icon1').show(); 
}); 
$("div#h_icon2").mouseover(function() { 
$('div#h_icon2').hide(); 
$('div#b_icon2').show(); 
}); 
$("div#h_icon3").mouseover(function() { 
$('div#h_icon3').hide(); 
$('div#b_icon3').show(); 
}); 
$('#bannerfloat03').html(''); 
}); 
}); 
</script> 
<div style="left: 400px; top: 300px; width: 338px; height: 280px; position: absolute" id="bannerfloatADS"> 
<script type="text/javascript"> 
google_ad_client = "ca-pub-8327339447162748"; 
google_ad_slot = "4629045516"; 
google_ad_width = 336; 
google_ad_height = 280; 
</script> 
<!-- opoi --> 
<script type="text/javascript" 
src="//pagead2.googlesyndication.com/pagead/show_ads.js"> 
</script> 
<div style="left: 260px; top: 11px; width: 110px; height: 0px; position:  absolute" id="h_icon2"><img alt="" src="http://www.icone-png.com/png/22/21536.png" /></div> 
在我的主頁腳本彈出


它的廣告谷歌廣告,我確實從管理員刪除,但它去除的幾個小時後,一次又一次地回來了。任何建議停止?

回答

0

如果您正在像限制訪問權限一樣引用某人,請嘗試通過添加新角色和分配給這些角色的用戶。 系統 - >權限 - >角色 系統 - >權限 - >用戶

我強烈建議您應用所有可用的補丁,以確保您的商店安全。如果您仍然使用1.9.0.1版本,則缺少許多安全補丁。

+0

不,這是不是我的意思,我的意思是我想從管理區域總共禁用其他腳本字段,無論是從代碼或從數據庫,但不知道在哪裏和如何? – user3574329

相關問題