In UBB.Threads 7, a /scripts/sample.inc.php file is provided to help you create your own custom pages as needed.
For example, you can duplicate the /scripts/sample.inc.php file to /scripts/mypage.inc.php Then create a /templates/default/mypage.tpl template file with the HTML for your page.
Then visiting ubbthreads.php?ubb=mypage will load that page.
This works great for my custom pages.
// Set this variable to whatever scriptname.inc.php file you have included in /scripts
$_REQUEST['ubb'] = "mypage";
// Set the full path to your ubbthreads.php file
include("/home/threads/public_html/ubb7/ubbthreads.php");
?>
When I follow the instructions for that, it works BUT when visiting the generated page it shows me as logged out. What do I need to add?