Hello.
Yes, work fine (and then work like indicate en my last reply

)
I try to add a code for, after x seconds, redirect to main page, but I can't...
I try some differents codes, like this:
Code:
<script language="JavaScript">
/* Determinamos el tiempo total en segundos */
var totalTiempo=10;
/* Determinamos la url donde redireccionar */
var url="https://www.myforum.com/";
function updateReloj()
{
document.getElementById('CuentaAtras').innerHTML = "Redireccionando en..."+totalTiempo+" segundos";
if(totalTiempo==0)
{
window.location=url;
}else{
/* Restamos un segundo al tiempo restante */
totalTiempo-=1;
/* Ejecutamos nuevamente la funci?n al pasar 1000 milisegundos (1 segundo) */
setTimeout("updateReloj()",1000);
}
}
window.onload=updateReloj;
</script>
But if insert this code in 404.php not work (have a error of Cloudflare) and if insert in template...obviously also not work...
Regards.