Add IPB2 authentication module
[bugdar.git] / includes / auth / config.php.new
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar
5 || # Copyright (c)2004-2009 Blue Static
6 || #
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.
10 || #
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
14 || # more details.
15 || #
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 \*=====================================================================*/
21
22 // ###################################################################
23 // Database connectivity settings
24
25 /**
26 * Name of the database server to connect to for authentication
27 */
28 $config['auth']['dbServer'] = 'localhost';
29
30 /**
31 * MySQL user of the authentication database
32 */
33 $config['auth']['dbUser'] = 'mysql';
34
35 /**
36 * Password of the authentication database
37 */
38 $config['auth']['dbPassword'] = 'secret';
39
40 /**
41 * Authentication database name
42 */
43 $config['auth']['dbName'] = 'remote_auth_db';
44
45 // ###################################################################
46 // Drupal configuration
47
48 /**
49 * The cookie name to use for Drupal. Leaving this NULL will get it from session_name()
50 */
51 $config['auth']['Drupal']['cookieName'] = null;
52
53 // ###################################################################
54 // phpBB2 configuration
55
56 /**
57 * Database table prefix
58 */
59 $config['auth']['phpBB2']['tablePrefix'] = 'phpbb2_';
60
61 /**
62 * The cookie name that is set in phpBB -> Administration -> General Admin -> Configuration -> Cookie Settings -> Cookie Name
63 */
64 $config['auth']['phpBB2']['cookieName'] = 'phpbb2mysql';
65
66 // ###################################################################
67 // vBulletin 3 configuration
68
69 /**
70 * Database table prefix
71 */
72 $config['auth']['vBulletin3']['tablePrefix'] = '';
73
74 /**
75 * This is the vBulletin license key that you can find in the Members' Area that is used in creating cookies
76 */
77 $config['auth']['vBulletin3']['licenseKey'] = 'LXXXXXXX';
78
79 // ###################################################################
80 // Invision Power Board 2 configuration
81
82 /**
83 * Database table prefix
84 */
85 $config['auth']['IPB2']['tablePrefix'] = 'ibf_';
86
87 /**
88 * Cookie prefix
89 */
90 $config['auth']['IPB2']['cookiePrefix'] = '';
91
92 ?>