Last modified: 2013-02-06 20:20:18 UTC
Hi, I installed all three extensions required, ran update.php, and here is my config : require_once( "$IP/extensions/UserDailyContribs/UserDailyContribs.php" ); require_once( "$IP/extensions/ClickTracking/ClickTracking.php" ); require_once( "$IP/extensions/ArticleFeedbackv5/ArticleFeedbackv5.php" ); $wgArticleFeedbackv5Categories = array( 'Mécanique', 'Qualité', 'Communication' ); When visiting pages in Mécanique category, no widget shown at the bottom of the page. I added the aft-permissions to my current groups (retrieved from ldap) : $wgGroupPermissions['wiki-reader']['aft-reader'] =true; $wgGroupPermissions['wiki-editor']['aft-editor'] = true; $wgGroupPermissions['wiki-controller']['aft-monitor'] = true; $wgGroupPermissions['wiki-admin']['aft-administrator'] = true; Any help will be much appreciated...
Version of mediawiki : 1.20.2 3 extensions are well enabled on the special:version page. I can access Spécial:ArticleFeedbackv5 and Spécial:ArticleFeedbackv5Watchlist which are empty. I also tried with this single option : $wgArticleFeedbackBlacklistv5Categories = array( 'Foo' ); which should enable the widget on all pages (because none are part of Foo category). But still no luck.
Ok, problem solved ! It was related to group permissions. I just copied AFTv5 permissions assignement lines from http://noc.wikimedia.org/conf/highlight.php?file=CommonSettings.php Now, it works. I will investigate further to tweak more accurately my permissions settings, but I know why it didn't work. That was the big point :o) Cheers from France !
Glad you found the reason!
yep :) thx. To be more precise, I have my user populate via ldap, so I have custom groups. For every custom group, I had to add : $wgGroupPermissions['name_of_custom_group'] = array( 'aft-reader' => true, 'aft-member' => true, 'aft-editor' => false, 'aft-monitor' => false, 'aft-administrator' => false, 'aft-oversighter' => false, ); Hope it will be usefull for other folks. btw, this extension is awsome imo. It really enjoins people to participate !