Page 1 of 1

adsense on download

PostPosted: Sun Apr 03, 2011 9:38 am
by pagan381
hi all

i see that we have a timer when peeps download and upload filess is there anyway that we could show ads while they wait for download / upload buttons to activate

kind regards

tony

admin
[URL REMOVED, NO SCRIPT FOUND ON URL}

Re: adsense on download

PostPosted: Sun Apr 03, 2011 5:15 pm
by PeterS
pagan381 wrote:hi all

i see that we have a timer when peeps download and upload filess is there anyway that we could show ads while they wait for download / upload buttons to activate

kind regards

tony

admin
[URL REMOVED, NO SCRIPT FOUND ON URL}


Go to ./download.php add above/below the following piece of code.
Code: Select all
echo "<h1><center>Download Time Limit</center></h1>";
       ?><script type="text/javascript">

var running = false
var endTime = null
var timerID = null
var totalMinutes = <?php echo $counter;?>;

function startTimer() {
    running = true
    now = new Date()
    now = now.getTime()
    endTime = now + (1000 * totalMinutes);
    showCountDown()
}

function showCountDown() {
    var now = new Date()
    now = now.getTime()
    if (endTime - now <= 0) {
       clearTimeout(timerID)
       window.location.reload()

    } else {
        var delta = new Date(endTime - now)
        var theMin = delta.getMinutes()
        var theSec = delta.getSeconds()
        var theTime = theMin
        theTime += ((theSec < 10) ? ":0" : ":") + theSec
        document.getElementById('SessionTimeCount').innerHTML = 'Please wait ( <font color="#FF0000">' + theTime + '</font> ) Minutes for Download'
        if (running) {
            timerID = setTimeout("showCountDown()",1000)
        }
    }
}

window.onload=startTimer
</script>


<center><span id="SessionTimeCount"></span></center><br />