MyBB Community Forums

Full Version: Joining Adoptable Site With Mybb Forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi i want to join my game adoptable site with my forum which is made by mybb codings and i want my players to register at game and then access the forum and there is not any option to register at mybb forum just like pokeheroes.com i can private message my website detail to staff ^^
If you want the game only accessible to members of your forum you can throw in this
if($mybb->user['uid'] != 0)
{
// User is a member of the forum
}
else
{
redirect("pathtoforum/member.php?action=register", "You must register first.");
}
You're wanting a SSO between both Adoptable and MyBB - in which case, you will need to either edit Adoptable to use the MyBB user registration and login as well as reset password, or vice versa.

Sadly I cannot help further, since I am not familiar with this "Adoptables" That you mention.