Use this free add-on http://devot-ee.com/add-ons/page-history to get the last page visited (or previous to last) instead of using HTTP_REFERER.
Either set as part of your form (hidden field for RET), or output into the JavaScript controlling the form submission (or page the form submits to.
<input type="hidden" value="{exp:page_history:get page=‘1’}" name="RET"/>
You could have some Jquery on the result page that redirects to the same page without but not inside the iFrame:
if (top.location.href != document.location.href) {
//### Inside an iFrame ###
if (document.location.href.indexOf("/redirected page after login") >= 0) {
//### Breakout of iFrame ###
$("body").css("display","none"); //Hide to minimise 'flicker'
top.location.href = document.location.href;
}
}
Alternatively have some JavaScript trapping the login form submission that then submits the page via Ajax, then redirects to the chosen URL (you won't need to close the fancybox, just target top.location.href.
Here's example JQuery to send the login form via Ajax with server error checking responses:
//### LOGIN FORM SUBMISSION ###
function SubmitLogin() {
//### Send form via AJAX ###
$.ajax({
type: "POST",
data: $("#login-form").serialize() + "&action=" + $("#login-form").attr("action"),
dataType: "html",
success: function (html) {
//### Successfully received an html page from the server ###
if ( html.search(/error/i) >= 0 ) {
if (html.search(/username you submitted was not found/i) >= 0) {
$("#login-username").addClass('error');
$("#login-username").after('<label class="error" for="login-username" generated="true">Email address doesn\'t exist<br />Re-check or register an account</label>');
} else if (html.toLowerCase().indexOf("account does not exist") != -1) {
//Do appropriate selection & error message
} else if (html.search(/You did not submit a valid email address/i) >= 0) {
//Do appropriate selection & error message
} else if (html.search(/captcha/i) >= 0) {
$("#captcha").addClass('error').after('<label class="error" generated="true">' + $("#captcha").attr('title') + '</label>')
} else if (html.search(/password/i) >= 0) {
$("#login-password").addClass('error');
$("#login-password").after('<label class="error" for="login-username" generated="true">You have entered an incorrect password</label>');
} else if (html.search(/already logged in/i) >= 0) {
$("#login-butn").after('<label class="error" for="login-username" generated="true">User already logged in!</label>');
} else if (html.search(/account has not been activated yet/i) >= 0) {
$("#login-butn").after('<label class="error" for="login-username" generated="true">Account has not been activated yet<br />Check your email and activate</label>');
} else {
}
} else {
//### Successfully Logged in ###
top.location.href = "where ever you want to go";
// Target RET field of form here...?
}
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
//### Error occurred, could be server, CMS or 404 ###
}
});
} //### End of SubmitLogin function ###
This is just an example based on some EE1 error messages, which I've updated with a couple of ones from EE2, so should give you a start if you choose to go down the Ajax route of submission and therefore redirection.