User:Macher24.de/Extensions/WBB/Users Integration
Appearance
Requirements:
- Woltlab Bulletin Board
- MediaWiki 1.5.x or newer
Installation:
1. Download file on macher24 (German website!)
2. Put Auth_wbb.php in your wiki/extensions directory
3. Add the following block to your LocalSettings.php and change the setting for your installation:
// This requires a user be logged into the wiki to make changes. $wgGroupPermissions['*']['edit'] = false; // Specify who may create new accounts: 0 means no, 1 means yes $wgGroupPermissions['*']['createaccount'] = false; // WBB User Database Plugin. (Requires MySQL Database) require_once './extensions/Auth_wbb.php'; $wgWBB_AccessGroups = '1,2,3,4'; // Name of Groups for write permissions $wgWBB_DB_Host = 'localhost'; // WBB MySQL Host Name. $wgWBB_DB_Username = 'root'; // WBB MySQL Username. $wgWBB_DB_Password = ; // WBB MySQL Password. $wgWBB_DB_Database = 'wbb2'; // WBB MySQL Database Name. $wgWBB_UserTB = 'bb1_users'; // Name of your WBB user table. (i.e. bb1_users) $wgWBB_User_GroupTB = 'bb1_user2groups'; // Name of your WBB user_group table. (i.e. bb1_user2groups) $wgAuth = new Auth_WBB(); // Auth_WBBPlugin.