MyBB Community Forums

Full Version: Custom page upgrade
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Sorry, I am not sure if this is correct place to post this

I want to add a custom page to my mybb website but I also might be changing the websites software to IP.board or vBulletin, I am not 100% sure yet.

But I want to know if I make a custom page now for mybb will I be able to easily transfer it to another software for it to work?

Thanks
No ! your custom pages on myBB do not work on other systems without modifications .. you have to remake them
oh kk thanks for quick reply.

I also have one more question. I have a custom page right now and I wanted to know if there is a way to block it for guests, as in they need to sign up to view it.

Thanks again.
It's fairly easy. Are you using a plugin or something? If so, which?
Yes I am using the page manager plugin.
You can put this at the top of the page's code then:

<?php

if ($mybb->user['usergroup'] == 1)
{
	error_no_permission();
}

?>
Worked perfectly, thanks! Smile