Adding to what others have said, are you sure that the cnditions are met to hit the header()
You could use empty() to clear up your code & Do some testing :
//Debug
unset($_SESSION['SESS_MEMBER_ID']);
unset($fb_login);
if(empty($_SESSION['SESS_MEMBER_ID']) && !isset($fb_login)) {
exit(header("Location: login.php?msg=Please+Login+Again."));
}