summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/MsUpload/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/MsUpload/README.md')
-rw-r--r--www/wiki/extensions/MsUpload/README.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/www/wiki/extensions/MsUpload/README.md b/www/wiki/extensions/MsUpload/README.md
new file mode 100644
index 00000000..2db433e8
--- /dev/null
+++ b/www/wiki/extensions/MsUpload/README.md
@@ -0,0 +1,28 @@
+# MsUpload
+
+## Installation
+
+To install MsUpload, add the following to your LocalSettings.php:
+
+// If necessary, adjust the global configuration:
+$wgEnableWriteAPI = true; // Enable the API
+$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
+
+* Developed and coded by Martin Schwindl (wiki@ratin.de)
+* Idea, project management and bug fixing by Martin Keyler (wiki@keyler-consult.de)
+* Updated, debugged and enhanced by Felipe Schenone (schenonef@gmail.com)
+* Some icons by Yusuke Kamiyamane (http://p.yusukekamiyamane.com). All rights reserved. Licensed under a Creative Commons Attribution 3.0 License. \ No newline at end of file