1<?php
2// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
3//
4// All Rights Reserved. See copyright.txt for details and a complete list of authors.
5// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
6// $Id$
7
8include('db/local.php');
9$ADODB_SESSION_DRIVER = $db_tiki;
10$ADODB_SESSION_CONNECT = $host_tiki;
11$ADODB_SESSION_USER = $user_tiki;
12$ADODB_SESSION_PWD = $pass_tiki;
13$ADODB_SESSION_DB = $dbs_tiki;
14unset($db_tiki);
15unset($host_tiki);
16unset($user_tiki);
17unset($pass_tiki);
18unset($dbs_tiki);
19ini_set('session.save_handler', 'user');
20// Force autoload
21if (! class_exists('ADODB_Session')) {
22	die('AdoDb Session missing');
23}
24