I'm using the code shown below in qa-app-users.php ( the $qa_logged_in_userid_checked=true; function)
..which makes the site private.. but this means users can't get to the forgot password page when they are not logged in..
how do i create an exception to the redirect for www.someQ2Asite.com/forgot ... ?
thanks much !
if (
(empty($_SESSION['qa_session_userid_'.$suffix]))
&& ($_REQUEST["qa-rewrite"]!="login")
&& ($_REQUEST["qa-rewrite"]!="register")){
qa_redirect_raw('login');
}