Bing?Yes.amidoingthisright
Have you tried https:// or :443?Thanks.
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:
- In your mySQL database you will need to modify the URLs to now have /uptime.php at the end.
- Open up pull/index.php and locate line 17:
$url = "http://".$result['url']."/uptime.php";
- Change line 17 to the following:
Code:$url = "http://".$result['url']."";
That is EXACTLY what I did, thank you! Very nice uptime checkerYou 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.