MyBB Community Forums

Full Version: Afther loggin in
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone,

I have a question, now if guest comming to my forum the get on the index page thats fine. Afther loggin the also get on the index page.
But now I want to have that afther loggin in that the members come on the portal page, and not on the index.

Is this possible ?
Yes, open ./member.php and find; around line # 1088
redirect(htmlentities($mybb->input['url']), $lang->redirect_loggedin);
and change it to;
redirect("portal.php", $lang->redirect_loggedin);
Thanks, don this but afther loggin off and loggin in stil the forum go´s to the index
And I have cleaned the forum cookies etc and loggin in again and still to the index
Sorry, edit the above again;
Now open ./member.php and find; around line # 1088
redirect(htmlentities($mybb->input['url']), $lang->redirect_loggedin);
and change it to;
redirect("portal.php", $lang->redirect_loggedin);
Thanks works great now!!
Thanks.