PDA

View Full Version : This is awesome


the one
04-01-2016, 08:15 AM
When you go to http://www.abovetopsecret.com/

It say this website as been seized then after a few seconds it says April fools and take's you to the site.

Does anyone know how i would be able to do that with my forum.What coding do i need to apply.Is it in my header or the htaccess file

In Omnibus
04-01-2016, 10:50 AM
It's a simple javascript.

It would be something like:

<form name="redirect">
<center>
<font face="Arial"><b>You will be redirected to the script in<br><br>
<form>
<input type="text" size="3" name="redirect2">
</form>
seconds</b></font>
</center>

<script>
<!--

//change below target URL to your own
var targetURL="http://mysite.com"
//change the second to start counting down from
var countdownfrom=10

var currentsecond=document.redirect.redirect2.value=co untdownfrom+1
function countredirect(){
if (currentsecond!=1){
currentsecond-=1
document.redirect.redirect2.value=currentsecond
}
else{
window.location=targetURL
return
}
setTimeout("countredirect()",1000)
}

countredirect()
//-->
</script>

the one
04-01-2016, 11:05 AM
It's a simple javascript.

It would be something like:

<form name="redirect">
<center>
<font face="Arial"><b>You will be redirected to the script in<br><br>
<form>
<input type="text" size="3" name="redirect2">
</form>
seconds</b></font>
</center>

<script>
<!--

//change below target URL to your own
var targetURL="http://mysite.com"
//change the second to start counting down from
var countdownfrom=10


var currentsecond=document.redirect.redirect2.value=co untdownfrom+1
function countredirect(){
if (currentsecond!=1){
currentsecond-=1
document.redirect.redirect2.value=currentsecond
}
else{
window.location=targetURL
return
}
setTimeout("countredirect()",1000)
}

countredirect()
//-->
</script>

Many thanks for the above

my website is jandeane81.com and i would like it to show that my website as been seized by fbi law enforcement. can you help me put it correctly in the above code and where do i put this code

many thanks for your time

--------------- Added 1459517987 at 1459517987 ---------------

Ok i am having a blonde moment

I did this below and will highlight what a put in bold.I then put it in my header template and all it did was show a countdown.What am i doing wrong

<form name="redirect">
<center>
<font face="Arial"><b>You will be redirected to the script in<br>http://krebsonsecurity.com/wp-content/uploads/2013/05/lrseized.png<br>
<form>
<input type="text" size="3" name="redirect2">
</form>
seconds</b></font>
</center>

<script>
<!--

//change below target URL to your own
var targetURL="http://jandeane81.com"
//change the second to start counting down from
var countdownfrom=10


var currentsecond=document.redirect.redirect2.value=co untdownfrom+1
function countredirect(){
if (currentsecond!=1){
currentsecond-=1
document.redirect.redirect2.value=currentsecond
}
else{
window.location=targetURL
return
}
setTimeout("countredirect()",1000)
}

countredirect()
//-->
</script>

Many thanks