Edit: Also the link in my header for logging and out shows {LOGIN_LOGOUT}
here look!: http://www.riftco.net/community/raffleinfo.php
Then you will see the problems..
*.php
Code: Select all
<?php
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup('viewforum');
$template->set_filenames(array(
'body' => 'testpage.html')
);
page_footer();
?>
*.html
Code: Select all
<!-- INCLUDE overall_header.html -->
<h2>testing</h2>
<div class="panel">
<div class="inner"><span class="corners-top"><span></span></span>
<div class="content">
<p>
Fake paragraph about nonsense.
While you're here please eat these objects:
<ul>
<li>Car Horn</li>
<li>20lb weight</li>
<li>A new toilet seat.</li>
</ul>
</p>
</div>
<span class="corners-bottom"><span></span></span></div>
</div>
<!-- INCLUDE overall_footer.html -->