Je hebt nu alles domweg achter elkaar geplakt, zo werkt dat natuurlijk niet. Maak eens een PHP bestand aan met deze inhoud:
Code: Selecteer alles
<?php
define('IN_PHPBB', true);
$phpbb_root_path = ''; // Het pad naar je phpBB3 root.
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
//Start session management
$user->session_begin();
$auth->acl($user->data);
$page = request_var('p', '');
switch ( $page )
{
default:
case 'homepage':
$user->setup();
$total_posts = $config['num_posts'];
$total_topics = $config['num_topics'];
$total_users = $config['num_users'];
$l_total_user_s = ($total_users == 0) ? 'TOTAL_USERS_ZERO' : 'TOTAL_USERS_OTHER';
$l_total_post_s = ($total_posts == 0) ? 'TOTAL_POSTS_ZERO' : 'TOTAL_POSTS_OTHER';
$l_total_topic_s = ($total_topics == 0) ? 'TOTAL_TOPICS_ZERO' : 'TOTAL_TOPICS_OTHER';
$template->assign_vars(array(
'TOTAL_POSTS' => sprintf($user->lang[$l_total_post_s], $total_posts),
'TOTAL_TOPICS' => sprintf($user->lang[$l_total_topic_s], $total_topics),
'TOTAL_USERS' => sprintf($user->lang[$l_total_user_s], $total_users),
));
page_header('Homepage');
$template->set_filenames(array(
'body' => 'homepage_body.html')
);
break;
}
page_footer();
?>
Let ook op dat het pad naar je phpBB installatie klopt (3e regel).
Maak nu een bestand 'homepage_body.html' aan in je templatemap. Zet daarin
Code: Selecteer alles
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="nl-nl" xml:lang="nl-nl">
<head>
<title>{SITENAME} • {PAGE_TITLE}</title>
</head>
<body>
<h3>{L_STATISTICS}</h3>
<p>{TOTAL_POSTS} • {TOTAL_TOPICS} • {TOTAL_USERS} </p>
</body>
</html>