MyBB Community Forums

Full Version: Member only access page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I make my own costum page to MyBB where it comes up with a costum warning message if the user is not logged in.
if(!$mybb->user['uid'])
{
	error_no_permission();
}

That will show a no permissions page if the user is a guest.