I'm getting the error "Cannot send session cache limiter" but the funny thing is that I check the status of the session before i called session_start().
if (session_status() == PHP_SESSION_NONE)
{
session_start();
}
Is there any circumstances where the session_status would be bypassed?