2 /*=====================================================================*\
3 || ###################################################################
5 || # Copyright (c)2004-2009 Blue Static
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
22 // ###################################################################
23 // Database connectivity settings
26 * Name of the database server to connect to for authentication
28 $config['auth']['dbServer'] = 'localhost';
31 * MySQL user of the authentication database
33 $config['auth']['dbUser'] = 'mysql';
36 * Password of the authentication database
38 $config['auth']['dbPassword'] = 'secret';
41 * Authentication database name
43 $config['auth']['dbName'] = 'remote_auth_db';
45 // ###################################################################
46 // Drupal configuration
49 * The cookie name to use for Drupal. Leaving this NULL will get it from session_name()
51 $config['auth']['Drupal']['cookieName'] = null;
53 // ###################################################################
54 // phpBB2 configuration
57 * Database table prefix
59 $config['auth']['phpBB2']['tablePrefix'] = 'phpbb2_';
62 * The cookie name that is set in phpBB -> Administration -> General Admin -> Configuration -> Cookie Settings -> Cookie Name
64 $config['auth']['phpBB2']['cookieName'] = 'phpbb2mysql';
66 // ###################################################################
67 // vBulletin 3 configuration
70 * Database table prefix
72 $config['auth']['vBulletin3']['tablePrefix'] = '';
75 * This is the vBulletin license key that you can find in the Members' Area that is used in creating cookies
77 $config['auth']['vBulletin3']['licenseKey'] = 'LXXXXXXX';