llaumgui / mw-auth-flarum
Allow to connect on MediaWiki from Flarum account.
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 2
Forks: 0
Open Issues: 4
Type:mediawiki-extension
Requires (Dev)
- dev-main
- 1.0.0
- 0.9.0
- dev-dependabot/composer/mediawiki/mediawiki-phan-config-0.17.0
- dev-dependabot/composer/mediawiki/mediawiki-codesniffer-48.0.0
- dev-dependabot/github_actions/actions/checkout-5
- dev-dependabot/github_actions/nosborn/github-action-markdown-cli-3.5.0
- dev-llaumgui-patch-2
- dev-llaumgui-patch-1
This package is auto-updated.
Last update: 2025-09-08 14:20:50 UTC
README
Allows to connect to MediaWiki from an a ccount based on the Flarum forum solution.
Installation
- Put code in extensions/AuthFlarum.
- Enable extension :
wfLoadExtension( 'AuthFlarum' );
Configuration
$wgAuthFlarumUri
URI of your Flarum instance.
Example:
$wgAuthFlarumUri = 'http://localhost';
$wgAuthFlarumAutoCreate
Allow auto creation of MediaWiki account from Flarum ? Becarrefull, also Need
$wgGroupPermissions['*']['autocreateaccount'] = true; $wgGroupPermissions['*']['createaccount'] = false; $wgGroupPermissions['sysop']['createaccount'] = false;
Example:
$wgAuthFlarumAutoCreate = true;
$wgAuthFlarumAutoCreateMinPost
Need a minimum number of posts to allow auto creation of MediaWiki account.
Example:
$wgAuthFlarumAutoCreateMinPost = 100;