This is the error message in debug.log
[28-Jan-2016 08:54:51 America/Toronto] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/nikoniko/public_html/osclassifieds/oc-includes/osclass/utils.php:1740) in /home/nikoniko/public_html/osclassifieds/oc-includes/osclass/utils.php on line 1745
This is from utils.php:1738 to 1745
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);