User Groups wont save on other wikis
Fragment of a discussion from Extension talk:GlobalUserGroups
You only need to set up GlobalUserGroups as it is described here:
require_once ( "$IP/extensions/GlobalUserGroups/GlobalUserGroups.php" ); $wgGlobalUserGroups = array( 'rollback-global', 'sysop-global', ); // Per example // copy the local sysop permissions to the global sysop group $wgGroupPermissions['sysop-global'] = $wgGroupPermissions['sysop']; // global rollbacker group $wgGroupPermissions['rollback-global']['rollback'] = true; // allows to revert edits by an user with one click $wgGroupPermissions['rollback-global']['suppressredirect'] = true; // global rollbackers can moving a page without automatically creating a redirect
Then, when you grant global sysop rights through Special:UserRights in a wiki, the user will be automatically global sysop in every wiki. Did you set $wgLocalDatabases? Otherwise, it will not works. You have to set this settings for every wiki (at best, you use a shared configuration file). Kind regards,
SVG 14:50, 9 January 2012 (UTC)