Warning message - need help please

Hi all,

I’m new to the forum so forgive me if this question has been asked. I run a classified website and when a user posts and ad they have to validate their ad. When they click on the validation link the website shows this message:

PHP Warning: Cannot modify header information - headers already sent by (outputstarted at /home/myfp2012/public_html/oc-includes/osclass/utils.php:1588) in /home/myfp2012/public_html/oc-includes/osclass/utils.php on line 1590

My utils.php around this area in:

[php]function osc_redirect_to($url) {
if(ob_get_length()>0) {
ob_end_flush();
}
header("Location: ".$url);
exit;
}

?>[/php]

Any help would be appreciated.

Regards,
Tim

Somewhere there is output to the browser. Check that there are no blank lines or spaces before any of your opening <?php tags

Sponsor our Newsletter | Privacy Policy | Terms of Service