Manual:$wgCopyUploadsFromSpecialUpload/ko
Appearance
| Files and file uploads: $wgCopyUploadsFromSpecialUpload | |
|---|---|
| Add an interface to Special:Upload to enable uploading from URLs |
|
| 이 변수가 소개된 버전: | 1.20.0 (Gerrit change 16946; git #8c6c29b3) |
| 이 변수가 사라진 버전: | 계속해서 쓰이고 있음 |
| 허용값: | (boolean) |
| 기본값: | false |
| 기타 설정: 알파벳 순 | 기능별 순 | |
상세
By default, upload by URL, when enabled via $wgAllowCopyUploads, is only possible using the API (or extensions such as UploadWizard).
To make the option usable from Special:Upload, you can set this variable to true.
In order to make use of this option, users also need to have the option $wgAllowCopyUploads set to true and the associated user right upload_by_url.
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;