vote up 0 vote down star

Hi guys, I'm experiencing some problems with ob_* function when it runs as a cronjob:

<?php
function getLayout($file, $extract=array()) {

    if (is_file($file)) {

    	if (count($extract) > 0) {
    		extract($extract);
    	}

    	ob_start();
    	include $file;
    	$contents = ob_get_contents();
    	ob_end_clean();

    	return $contents;
    }

    return false;
}

file_put_contents('somecachefile.html', getLayout('somefile.php', array('var1'=>$val1, 'var2'=>$val2)));
?>

The cronjob is setup like this: (runs every minute)

* * * * * /usr/bin/php /path/to/cron.php > /dev/null

In this case nothing happen but the cron really ran.

If i call this (/usr/bin/php /path/to/cron.php) from the command line everything is working as expected.

Any ideas where i make a mistake???

Thanks for the help upfront!

flag

20% accept rate

1 Answer

vote up 5 vote down check

You probably need to use an absolute path on 'somefile.php'. It is probably getting created in the pwd of cron. Or you could do a chdir at the beginning of the script of in the cron statement.

link|flag
Thanks Swish! The problem was the paths to the files. Using the absolute paths help in my case. Thanks again! – plamen Aug 10 at 17:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.