Hat jemand eine Lösung, wie ich externe Seiten in Whos online einbinden kann? Im offiziellen Forum hab ich eine Lösung gefunden:
Code: Alles auswählen
define('IN_PHPBB', true);
define('ROOT_PATH', "/pfad/zum/forum");
if (!defined('IN_PHPBB') || !defined('ROOT_PATH')) {
exit();
}
$phpEx = "php";
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : ROOT_PATH . '/';
include($phpbb_root_path . 'common.' . $phpEx);
$user->session_begin();
$auth->acl($user->data);Hat jemand eine andere Idee?