• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

Uptime script

You'll have to forgive me, I don't quite understand what you mean by "no uptime site."

If the server you're on is Unix-based with perl, this script would work:

Code:
#!/usr/bin/perl
use strict;

my $uptime = `uptime`;
print "content-type: text/html\n\n$uptime";
exit;
 
actually, it simply checks wether a site is online during time intervals, like every 5 mins, etc.
 
Back
Top