Topic on Help talk:Extension:Translate

Everytime I publish a translation the api.php returns "permissiondenied"

4
98.0.152.222 (talkcontribs)

I have all the group permissions set to true (I've even tried it with the "*" group), but everytime someone tries to publish a translation the translated text is yellow and in the browser's network tab, the api.php POST returns:

code: "permissiondenied", info: "You are not allowed to execute the action you have requested."

I'm not sure what I'm doing wrong

Nikerabbit (talkcontribs)
98.0.152.222 (talkcontribs)

Yeah I have all of those entries in my LocalSettings.php. We have other extensions but I've already tried turning them off and was still getting the permissions error. The guide that I followed wanted to load a bunch of other extensions:

wfLoadExtension( 'Babel' );
               
wfLoadExtension( 'cldr' );
               
wfLoadExtension( 'CleanChanges' );
$wgCCTrailerFilter = true;
$wgCCUserFilter = false;
$wgDefaultUserOptions['usenewrc'] = 1;
            
wfLoadExtension( 'LocalisationUpdate' );
$wgLocalisationUpdateDirectory = "$IP/cache";
               
wfLoadExtension( 'Translate' );
$wgGroupPermissions['Translators']['skipcaptcha'] = true;
$wgGroupPermissions['Translators']['translate'] = true;
$wgGroupPermissions['Translators']['translate-messagereview'] = true;
$wgGroupPermissions['Translators']['translate-groupreview'] = true;
$wgGroupPermissions['Translators']['translate-import'] = true;
$wgGroupPermissions['Translators']['pagetranslation'] = true;
$wgGroupPermissions['sysop']['pagetranslation'] = true;
$wgGroupPermissions['sysop']['translate-manage'] = true;
$wgTranslateDocumentationLanguageCode = 'qqq';
$wgExtraLanguageNames['qqq'] = 'Message documentation'; # No linguistic content. Used for documenting messages

wfLoadExtension( 'UniversalLanguageSelector' );
Nikerabbit (talkcontribs)

I don't have other ideas then. Do note that MediaWiki namespace has restricted editing.

Reply to "Everytime I publish a translation the api.php returns "permissiondenied""