2017-08-25 67 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