Manual:$wgForeignUploadTargets

From mediawiki.org
Shared uploads: $wgForeignUploadTargets
Configuration for foreign upload targets for the Upload dialog .
Introduced in version:1.27.0 (Gerrit change 243993; git #824e53c6)
Removed in version:still in use
Allowed values:(array)
Default value:[ 'local', ]

Array of foreign file repository names (set in $wgForeignFileRepos ) that are allowable upload targets for the Upload dialog . The "target" wikis corresponding to the repositories must share the list of users with the "source" and be configured to accept CORS requests from the source wiki with $wgCrossSiteAJAXdomains . The default value allows for local file uploads only.

In order for uploads to be completed successfully using the same user on the target and source wiki, the wikis must have some method of authentication compatible with mw.ForeignApi (i.e. Extension:CentralAuth ).

Prior to MediaWiki 1.28, the default value was [], which was treated the same as [ 'local' ]. Starting with MediaWiki 1.28, the default value is [ 'local' ], and [] means that no upload targets are available (effectively disabling the upload dialog).

See also[edit]