Manual:$wgCopyUploadsDomains/de-formal

This page is a translated version of the page Manual:$wgCopyUploadsDomains and the translation is 10% complete.
Files and file uploads: $wgCopyUploadsDomains
Limit $wgAllowCopyUploads to a specific list of domains
Eingeführt in Version:1.20.0 (Gerrit change 16946; git #8c6c29b3)
Entfernt in Version:weiterhin vorhanden
Erlaubte Werte:(array)
Standardwert:[]

Details

The domains in the list can include wildcard characters (*) in place of any of the domain levels, e.g. '*.flickr.com' or 'upload.*.gov.uk'.

If this array is empty (per the default), all domains are accepted.

Example usage

This example setup will allow all autoconfirmed users to upload by URL, via Special:Upload or the API, from Flickr and some UK Government websites only. Add to the bottom of your LocalSettings.php :

$wgGroupPermissions['autoconfirmed']['upload_by_url'] = true;
$wgAllowCopyUploads = true;
$wgCopyUploadsFromSpecialUpload = true;
$wgCopyUploadsDomains = array( '*.flickr.com', 'upload.*.gov.uk' );

See also