Quote:
Originally Posted by Mek
Hi folks, I just tired out Kai Backman's integration authplugin; I was wondering if there is a way to make registering a user on the wiki create a coresponding vbulletin account. Or would I simply turn off the new user creation to force registration on the vbulletin end?
|
At least, you can do the second one easily
On your LocalSettings.php find
PHP Code:
require_once( "includes/DefaultSettings.php" );
Add below
PHP Code:
# Only sysops can register new users
$wgWhitelistAccount = array ( "sysop" => 1, "developer" => 1 );