I've written a script to generate some XML, im using a very basic method to save the results of the XML to a file:
<?php
// start the output buffer to cache the content
ob_start();
//SOME PHP CODE HERE TO GENERATE CONTENTS ON THE FILE
$cachefile = "results.xml";
// open the cache file for writing
$fp = fopen($cachefile, 'w');
// save the contents of output buffer to the file
fwrite($fp, ob_get_contents());
// close the file
fclose($fp);
// Send the output to the browser
ob_end_flush();
When I manually go to the URL of the file containing the script on my server the scripts runs and creates the file.
However, when I try and run it as a cron job the script runs and the output is generated by not saved to a file.
Any ideas why?