Hello guys, I'm looking for a custom Server Uptime Monitoring script in php, basically a clone of http://uptime.besthostratings.com/ PM me if you could do it with your price and the time you need. Cheers,
@Tioneb I think you would have better chances if you would ask this question on "Buy Sell Trade" forum in accurate category - although you will probably get a lot of offers anyway.
Thanx Greg, you're right. I just tried and read that I needed 25 posts to open a thread in the "Buy Sell Trade" forum. I guess I'll have to wait a bit (and post more) then!
You can check server status using this: $c= exec("ping server_name.com"); $c now has the status, like how many packets were sent, how many responses the server made etc... Successful example: Minimum = 382ms, Maximum = 384ms, Average = 383ms Server Down example: Packets: Sent = 4, Received = 0, Lost = 4 (100% loss) You can store that in database, or some flat file, or show in browser etc... regards