Possible Duplicate:
Warning: Cannot modify header information - headers already sent
have you encountered PHP's headers already sending even though you already showed content to the browser?
.Proof of Concept.
test.php
<?php
echo "header is trolling";
header('Location: http://google.com');
?>
screenshot after loading test.php
http://i51.tinypic.com/2gvj6gi.png
it displays object not found at first (i am on a random page) i am trying to capture the 'Transferring data from Google' but it loaded so fast lol
if your gonna ask for my phpinfo just tell me what section to post :)
Just to CLARIFY i am not getting 'headers already sent' error i do know how to deal with that. i am actually expecting that error but it didn't showed up