Good morning
I have been trying to debug which configuration parameter I am missing, but I cannot find yet if it is a bug or a configuration problem
I have not been able to find such a bug report / parameter helper
Could you please reproduce and confirm either a bug, or we'll maybe need to update the doc ?
Thanks
- Problem **
- When I disable the Anonymous read on my wiki with only the Translation bundle installed, the Translation page Special:PageTranslation is not available anymore whereas I have a $wgGroupPermissions['*']['pagetranslation'] = true; putting sysop as a group there do not help neither
Steps to reproduce
- Install basic Mediawiki 1.27.1 using php 5.6.24-1+b1
- Install https://www.mediawiki.org/wiki/MediaWiki_Language_Extension_Bundle#Latest_release and configure it and verify it is working
- Disable Anonymous Read, Special:PageTranslation will not work anymore ( refresh your cache ), http://localhost/mediawiki/index.php?title=Special:PageTranslation&target=Test&do=mark won't work neither if you page name is Test
- Info: **
- If was not having this problem on version 1.19, but many changes have been performed in the meantime
- Entirely disable Anonymous Reads**
$wgGroupPermissions['*']['read'] = false;
$wgGroupPermissions['user']['read'] = true;
$wgGroupPermissions['*']['edit'] = false;
$wgGroupPermissions['user']['edit'] = true;
$wgGroupPermissions['*']['translate'] = true;
$wgGroupPermissions['*']['translate-manage'] = true;
$wgGroupPermissions['*']['translate-import'] = true;
$wgGroupPermissions['*']['pagetranslation'] = true;
$wgGroupPermissions['*']['translate-messagereview'] = true;
$wgGroupPermissions['*']['translate-proofr'] = true;
$wgGroupPermissions['*']['translate-groupreview'] = true;