1.) Edit the check.php and set your options! Details below...

If you want to receive emails, change your@email.com to the email address you want to receive updates at,
also change your_domain.com to your domain.

If you do not want emails, and would rather check in manually. Then add // in front of mail( and set $dead_delete to 0.

Example of Options Below:

//////////Options///////////////////////
$pw = "admin"; //set your password here
$dead_delete = 1; //one for on or 0 for off - deletes dead pages from your list when email is sent
function notify($message) {
		//Set your email addresses here - replace your@email.com and the notify@your_domain.com  
		mail('your@email.com', 'URGENT - FB Property Down', $message,'From: notify@your_domain.com','-f notify@your_domain.com');

}
//////////End-Options/////////////////////// 



2.) Setup your URLS
Edit urls.txt, one page or app per line!

3.) Upload your files (index.php,check.php and urls.txt) to your site!

4.) If you chose to have automated emails sent when pages go down, make sure you have set the propper setting as shown above. You'll also need to setup a cron job for your preferred schedule, I'd recommend something like 15-30 minutes.

The command that needs to be set is "php -q /your/path/check.php" where /your/path/ is changed to your full path to check.php.

Here is some help for finding your full path:
 Make a new php file with the following code inside
------
<?php
echo dirname(__FILE__);
?>
------
and then upload to the same directory as check.php! When you pull up this page in your browser it should return the full path


Need help for setting a cron job??
All hosts are different, setting up a cron job is usually simple and straight forward. If you need help, attempt searching google for your host company + "cron jobs"
If you cannot find a quick guide, please attempt to contact your hosting company for assistance in setting aconr job on their server.
