amuck-landowner

Anybody got mojeda's ServerStatus script working to monitor SSL host?

MartinD

Well-Known Member
Verified Provider
Retired Staff
You could at least attempt to contribute to the forums by describing the problems you're having. If you're just going to a random title, stick it in to Google instead.
 

mojeda

New Member
  1. In your mySQL database you will need to modify the URLs to now have /uptime.php at the end.
  2. Open up pull/index.php and locate line 17:

    $url = "http://".$result['url']."/uptime.php";

  3. Change line 17 to the following:
    Code:
    $url = "http://".$result['url']."";
You can adjust line 17 to however you wish. The above makes it so you can do a custom web port and a different filename should you choose, but you need to change http:// to https:// for https, or just change $url to pull the whole url from the database:


$url = $result['url'];
If you make the above change you will need to update all of your URLs in your database.
 
Last edited by a moderator:

shovenose

New Member
Verified Provider
You can adjust line 17 to however you wish. The above makes it so you can do a custom web port and a different filename should you choose, but you need to change http:// to https:// for https, or just change $url to pull the whole url from the database:


$url = $result['url'];
If you make the above change you will need to update all of your URLs in your database.
That is EXACTLY what I did, thank you! Very nice uptime checker :)
 
Top
amuck-landowner