MediaWiki extension MsUpload.

Clone this repo:
  1. ae26a9e Localisation updates from https://translatewiki.net. by Translation updater bot · 15 hours ago master
  2. d95d845 build: Updating eslint-config-wikimedia to 0.28.2 by libraryupgrader · 4 weeks ago
  3. 3a75ff9 build: Updating braces to 3.0.3 by libraryupgrader · 5 weeks ago
  4. bfcaf55 build: Updating eslint-config-wikimedia to 0.28.0 by libraryupgrader · 6 weeks ago
  5. 9c364f4 Localisation updates from https://translatewiki.net. by Translation updater bot · 8 weeks ago

# MsUpload

Installation

To install MsUpload, add the following to your LocalSettings.php:

If necessary, adjust the global configuration:

$wgEnableUploads = true; // Enable uploads
$wgFileExtensions = array('png','gif','jpg','jpeg','doc','xls','mpp','pdf','ppt','tiff','bmp','docx','xlsx','pptx','ps','odt','ods','odp','odg');
$wgAllowJavaUploads = true; // Solves problem with Office 2007 and newer files (docx, xlsx, etc.)
$wgVerifyMimeType = false; // May solve problem with uploads of incorrect mime types

Then load the extension and configure it as needed. The values shown below are the defaults, so they may be omitted:

wfLoadExtension( 'MsUpload' );
$wgMSU_useDragDrop = true;
$wgMSU_showAutoCat = true;
$wgMSU_checkAutoCat = true;
$wgMSU_useMsLinks = false;
$wgMSU_confirmReplace = true; // Show the "Replace file?" checkbox
$wgMSU_imgParams = '400px';

Credits