Hy i have this problem whit my theme, i upload theme, work great, and when i want to serach i give this error :
Warning: Cannot modify header information - headers already sent by (output started at /home/samsung123/public_html/oc-includes/osclass/utils.php:1740) in /home/samsung123/public_html/oc-includes/osclass/utils.php on line 1743
In this files at line 1743 i have this :
function osc_redirect_to($url, $code = null) {
if(ob_get_length()>0) {
ob_end_flush();
}
if($code!=null) {
header("Location: ".$url, true, $code);
} else {
header("Location: ".$url);
}
exit;
}