A Server Status Script

 
Post new topic   Reply to topic    Aprelium Forum Index -> Off Topic Discussions
View previous topic :: View next topic  
Author Message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Sat Feb 19, 2005 11:13 pm    Post subject: A Server Status Script Reply with quote

Hello,

I have made a server status script for those of you who have multiple servers. It is quite straight forward and is made in JavaScript. Here goes:

Code:


<html>
<body bgcolor="#000000" text="#FFFFFF" topmargin="0" leftmargin="0" onload="wait()">

<font size="2" face="tahoma">

<script type="text/javascript">

var Pic= new Array(10);

Pic[0] = new Image();
Pic[0].src = "images/offline.gif";

Pic[1] = new Image();
Pic[1].src = "http://your_website_to_check/online.gif";
function wait() {
setTimeout("swappic1()", 2000);
}

function swappic1() {
if (Pic[1].complete)
   document.linetest1.src = Pic[1].src   
else
   document.linetest1.src = Pic[0].src; 
}

</script>
Server One <img src="images/wait.gif" name="linetest1" alt="checking site 1" align="middle">

</body>
</html>



This is designed to go in an iFrame which I use on my site. It works by looking for a picture called 'online.gif'. If it has found it, it displays the picture from that server, if not, it times out after the time you specify.

I hope this script will help people with multiple servers.

NB: You will need to change the 'your_website_to_check' bit in the JavaScript to your own website first!

Cheers,

Andy (aka, The Inquisitor)
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Sat Feb 26, 2005 5:36 pm    Post subject: Reply with quote

There is an online version for you to see on my home page,

www.m3ezw.co.uk/site/index.htm

look at the source code to see how it works.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Aprelium Forum Index -> Off Topic Discussions All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB phpBB Group