Villainnn Member Joined Jul 19, 2013 Posts 248 Reacts 0 Reputation 0 Credits 0 Oct 10, 2013 #1 Hey, I am Villain, I will be showing you how to add a new PHP page without any plugins. For this tutorial, you will be using pages made in HTML. So once you have your HTML Page, go into your AdminCP - Themes & Templates - Templates - Global Templates - Add Template - Write your code Now, open a text editor and type; Spoiler Code: <?php define('IN_MYBB', 1); require "./global.php"; add_breadcrumb("Short Title", "URLyouwanttohow.php"); eval("\$html = \"".$templates->get("templatenameinadmincp")."\";"); output_page($html); ?> Now as as " yourpagename.php " then upload to root/public_html in ftp/file manager. Now it should be done. Ask me if you have any troubles.
Hey, I am Villain, I will be showing you how to add a new PHP page without any plugins. For this tutorial, you will be using pages made in HTML. So once you have your HTML Page, go into your AdminCP - Themes & Templates - Templates - Global Templates - Add Template - Write your code Now, open a text editor and type; Spoiler Code: <?php define('IN_MYBB', 1); require "./global.php"; add_breadcrumb("Short Title", "URLyouwanttohow.php"); eval("\$html = \"".$templates->get("templatenameinadmincp")."\";"); output_page($html); ?> Now as as " yourpagename.php " then upload to root/public_html in ftp/file manager. Now it should be done. Ask me if you have any troubles.