Files and file uploads: $wgAllowCopyUploads | |
---|---|
Allow uploads from URLs as well as local files. |
|
Introduced in version: | 1.8.0 (r16158) |
Removed in version: | still in use |
Allowed values: | (boolean) |
Default value: | false |
Other settings: Alphabetical | By function |
Details
Users also need to have the associated user right upload_by_url
before this option is available.
Prior to MediaWiki 1.20, administrators (sysops) had this permission by default, but since then the permission needs to be granted explicitly.
By default, upload by URL are only possible using the API (or extensions such as Extension:UploadWizard$wgCopyUploadsFromSpecialUpload
to true as well.
By default, any source URL location is allowed, but you can whitelist a specific set by using $wgCopyUploadsDomains
.
Example usage
This example setup will allow all autoconfirmed users to upload by URL, via Special:Upload or the API. Add to the bottom of your LocalSettings.php
:$wgGroupPermissions['autoconfirmed']['upload_by_url'] = true;
$wgAllowCopyUploads = true;
$wgCopyUploadsFromSpecialUpload = true;
See also
- $wgMaxUploadSize
- $wgCopyUploadsDomains
- $wgCopyUploadsFromSpecialUpload
- $wgCopyUploadProxy
- $wgCopyUploadTimeout
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.