The most common cause for the error message you have there is the code trying to send an HTTP header after output has already been sent to the browser.
For example:
Code:
<?
echo $moo;
setcookie("moocookie", $moo);
?>
will not work, because PHP is trying to send an HTTP header (setcookie)
after output has been sent to the browser.
This will work:
Code:
<?
setcookie("moocookie",$moo);
echo $moo;
?>
To debug your problem, go through the code looking for any echo, print, printf (or similar) statements that occur before setcookie(..) or header(..) statements...