10 lines
374 B
PHP
10 lines
374 B
PHP
# Use bbPress Authentication
|
|
require_once( 'extensions/AuthPress.php' );
|
|
$wgAuth = new AuthPress();
|
|
$wgAuth->setAuthPressTablePrefix('bb_');
|
|
# Only include the following if you aren't using the same db as MediaWiki
|
|
#$wgAuth->setAuthPressDBServer ('FIXME');
|
|
#$wgAuth->setAuthPressDBName('FIXME');
|
|
#$wgAuth->setAuthPressUser('FIXME');
|
|
#$wgAuth->setAuthPressPassword('FIXME');
|