Dunno if I should be making a new post about this or post it in the sticky anyways I'm using the following code to integrate phpBB and it's session management with my website.
Does anyone know how I would implement the session management system from Olympus? I've checked at the Area51 forums about this but couldn't find anything solid.
| Code: |
| //<-- Start of phpBB integration code
define('IN_PHPBB', true); $site_root_path = '/var/www/html/'; $phpbb_root_path2 = '/forums/'; $phpbb_root_path = $site_root_path . $phpbb_root_path2; include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.php'); $userdata = session_pagestart($user_ip, WEBSITE); init_userprefs($userdata); //--> End of phpBB integration code |
Does anyone know how I would implement the session management system from Olympus? I've checked at the Area51 forums about this but couldn't find anything solid.
