Page MenuHomePhabricator

Re-enable uploads in no.wikimedia.org
Closed, ResolvedPublic

Description

Please re-enable uploads on Wikimedia Norge's chapter wiki, https://no.wikimedia.org/. The employees and board members will sometimes need to upload stuff that doesn't belong on Commons.

Event Timeline

jhsoby raised the priority of this task from to Needs Triage.
jhsoby updated the task description. (Show Details)
jhsoby subscribed.
Dereckson triaged this task as Medium priority.

I'm not an administrator, but User:WMNOastrid did it now, and it still doesn't work.

The message you currently see is triggered by a hook in our WikimediaMessages extension.:

public static function onUploadFormInitial( $tpl ) {
    global $wgForceUIMsgAsContentMsg;
    if ( !in_array( 'licenses', $wgForceUIMsgAsContentMsg )
        && wfMessage( 'licenses' )->inContentLanguage()->isDisabled()
    ) {
        throw new ErrorPageError( 'uploaddisabled', 'wikimedia-upload-nolicenses' );
    }
    return true;
}

Could you try to also edit MediaWiki:Licenses/no?

A message is considered disabled when the content is only a dash, so I imagine this is the page it tries to read.

I see on https://no.wikimedia.org/w/index.php?title=MediaWiki:Licenses/no&action=history WMNOastridthat tried that, could you ask them to let the revision with the text, so we can check more easily what's happening here?

@Dereckson, I forgot to say, but your suggestion worked, so it's fixed now. Thanks for your help!

jhsoby-WMNO moved this task from Misc. to Done on the WMNO-General board.