This is more of a reminder than a tutorial, when using PHP Includes in files triggered by CRON jobs you cannot use the normal relative links in your include or require statement you have you include the full server path to the file.
To do this you can use __DIR__ if the version of PHP you are running is greater than 5.3 like so:
<?php require_once(__DIR__.'/path/to/directory/file.php'); ?>