https://www.icyphoenix.com/viewtopic.php?f=4&t=8610&p=59188#p59188 ----------------------------------- Mighty Gorgon Wed 28 Aug, 2013 11:07 Re: CUSTOMIZATION - Create A Custom Page In Icy Phoenix 2.0 ----------------------------------- Ok, I found the error. I missed in the first version to add the PAGE_ID which is needed to display blocks and allows to use the AUTH system. If you check again the first post, now the guide should work. For your records, you need to add this to page top after inclusion of COMMON.PHP: [codeblock]$cms_page['page_id'] = 'guildrules';[/codeblock] After this small edit everything should work without further edits. Here is the altered code of the file you posted: [codeblock]session_begin(); $auth->acl($user->data); $user->setup(); // End session management $mycontent = 'My Fantastic Page'; $template->assign_vars(array( 'MYCONTENT' => $mycontent ) ); full_page_generation('guildrules.tpl', $lang['MYCONTENT'], '', ''); ?>[/codeblock]