PHP Classes

File: phpbb_session_handler.php

Recommend this page to a friend!
  Classes of Felix Manea   PHPBB 3 Integration class   phpbb_session_handler.php   Download  
File: phpbb_session_handler.php
Role: Auxiliary script
Content type: text/plain
Description: Session keep alive script (useful for keeping the user logged in if phpbb is used as slave application)
Class: PHPBB 3 Integration class
Manipulate accounts of PHPBB 3 users
Author: By
Last change: - added comments
- removed testing path for phpbb_root_path
Date: 15 years ago
Size: 315 bytes
 

Contents

Class file image Download
<?php
if(!defined('IN_PHPBB')) define('IN_PHPBB', true);
$phpbb_root_path = "path/to/forum";//absoulute physical path of the phpbb 3 forum
$phpEx = "php";//phpbb used extensions
require_once($phpbb_root_path."common.".$phpEx);
// Start session management
$user->session_begin();
// End session management
?>