All Projects → ProfessionalWiki → SimpleBatchUpload

ProfessionalWiki / SimpleBatchUpload

Licence: other
Allows for basic, no-frills uploading of multiple files

Programming Languages

PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
shell
77523 projects
CSS
56736 projects

Projects that are alternatives of or similar to SimpleBatchUpload

Uploadcare Widget
Uploadcare Widget, an ultimate tool for HTML5 file upload supporting multiple file upload, drag&drop, validation by file size/file extension/MIME file type, progress bar for file uploads, image preview.
Stars: ✭ 183 (+1120%)
Mutual labels:  upload, file-upload
rustypaste
A minimal file upload/pastebin service.
Stars: ✭ 102 (+580%)
Mutual labels:  upload, file-upload
Upload
Framework agnostic upload handler library
Stars: ✭ 213 (+1320%)
Mutual labels:  upload, file-upload
Uploadcare Php
PHP API client that handles uploads and further operations with files by wrapping Uploadcare Upload and REST APIs.
Stars: ✭ 77 (+413.33%)
Mutual labels:  upload, file-upload
react-native-tus-client
React Native client for the tus resumable upload protocol.
Stars: ✭ 38 (+153.33%)
Mutual labels:  upload, file-upload
Direct Upload
Composer Package to Direct Upload to S3
Stars: ✭ 84 (+460%)
Mutual labels:  upload, file-upload
Telegram Upload
Upload and download files from Telegram up to 2GiB using your account
Stars: ✭ 223 (+1386.67%)
Mutual labels:  upload, file-upload
Meteor Files
🚀 Upload files via DDP or HTTP to ☄️ Meteor server FS, AWS, GridFS, DropBox or Google Drive. Fast, secure and robust.
Stars: ✭ 1,033 (+6786.67%)
Mutual labels:  upload, file-upload
SemanticWikibase
Makes Wikibase data available in Semantic MediaWiki
Stars: ✭ 14 (-6.67%)
Mutual labels:  mediawiki, mediawiki-extension
matomo-mediawiki-extension
www.mediawiki.org/wiki/Extension:Piwik_Integration
Stars: ✭ 18 (+20%)
Mutual labels:  mediawiki, mediawiki-extension
Tus Java Server
Library to receive tus v1.0.0 file uploads in a Java server environment
Stars: ✭ 64 (+326.67%)
Mutual labels:  upload, file-upload
Meteor-Files-Demos
Demos for ostrio:files package
Stars: ✭ 51 (+240%)
Mutual labels:  upload, file-upload
Express Fileupload
Simple express file upload middleware that wraps around busboy
Stars: ✭ 1,069 (+7026.67%)
Mutual labels:  upload, file-upload
Angular File Uploader
Angular file uploader is an Angular 2/4/5/6/7/8/9/10 + file uploader module with Real-Time Progress Bar, Responsive design, Angular Universal Compatibility, localization and multiple themes which includes Drag and Drop and much more.
Stars: ✭ 92 (+513.33%)
Mutual labels:  upload, file-upload
Linx Server
Self-hosted file/code/media sharing website. ~~~~~~~~~~~~~~~~~~~ Demo: https://demo.linx-server.net/
Stars: ✭ 1,044 (+6860%)
Mutual labels:  upload, file-upload
Ngx File Drop
Angular 11 file and folder drop library
Stars: ✭ 220 (+1366.67%)
Mutual labels:  upload, file-upload
Chibisafe
Blazing fast file uploader and awesome bunker written in node! 🚀
Stars: ✭ 657 (+4280%)
Mutual labels:  upload, file-upload
Fileup
FileUp - JQuery File Upload
Stars: ✭ 10 (-33.33%)
Mutual labels:  upload, file-upload
mediawiki-antispam
Antispam extension for MediaWiki.
Stars: ✭ 15 (+0%)
Mutual labels:  mediawiki, mediawiki-extension
Dota2WebApi
A Dota 2 Web API for Liquipedia
Stars: ✭ 24 (+60%)
Mutual labels:  mediawiki, mediawiki-extension

SimpleBatchUpload

Latest Stable Version Packagist download count Build Status Scrutinizer Code Quality

The SimpleBatchUpload extension provides basic, no-frills uploading of multiple files to MediaWiki.

It is maintained by Professional.Wiki. Contact us for commercial support or development work.

Requirements

  • PHP 7.0 or later
  • MediaWiki 1.31 or later

Installation

The recommended way to install this extension is by using Composer. Just add the following to the MediaWiki composer.local.json file and run php composer.phar update mediawiki/simple-batch-upload from the MediaWiki installation directory.

{
	"require": {
		"mediawiki/simple-batch-upload": "^1.0"
	}
}

(Alternatively you can download a tar ball or zip file from GitHub and extract it into the extensions directory of your MediaWiki installation.)

Then add the following line to your LocalSettings.php:

wfLoadExtension('SimpleBatchUpload');

Note: To use the extension $wgEnableWriteAPI needs to be enabled and the user needs the writeapi right. Both is the default MediaWiki setting for registered users, but it may have been changed during the configuration of the wiki.

Usage

There are four ways to upload files using this extension:

  • Go to Special:BatchUpload to get a plain upload page
  • Go to Special:BatchUpload/Foo to get an upload page that sets {{Foo}} as the wikitext of the uploaded file's page
  • Add {{#batchupload:}} to any wikipage to get a simple upload button
  • Add {{#batchupload:Foo|Bar|Baz}} to any wikipage to get an upload button that sets {{Foo|Bar|Baz}} as the wikitext of the uploaded file's page

Note: The wikitext will only be set for newly uploaded files. If the file exists already, subsequent uploads of new versions of the file will not change the wikitext.

Customization

It is possible to specify dedicated parameter sets for the upload of specific file types by editing the MediaWiki:Simplebatchupload-parameters page. Each line of that page is considered as one set of parameters.

Available parameters are:

  • Name of template to be stored as text on initial upload
  • Upload comment
  • Title line of the Special:BatchUpload page

Parameters should be separated by pipes (|).

The line to be used is selected by appending the name of the template as the subpage to the URL of the Special:BatchUpload page.

Example:

Consider the parameter line

Pics | These pics were uploaded using [[mw:Extension:SimpleBatchUpload{{!}}SimpleBatchUpload]] | Upload some pics!
  • This can be selected by going to Special:BatchUpload/Pics.
  • The title of this page will be Upload some pics!.
  • The comment for the upload will be These pics were uploaded using [[mw:Extension:SimpleBatchUpload{{!}}SimpleBatchUpload]].
  • If a file with that name is uploaded for the first time it will have {{Pics}} as wikitext.

Configuration

Available configuration options:

  • $wgSimpleBatchUploadMaxFilesPerBatch - Array defining the maximum number of files that can be uploaded each time depending on the user group.
    Default:
$wgSimpleBatchUploadMaxFilesPerBatch = [
	'*' => 1000,
];

Note: Be aware that this is not the right setting to completely block file uploads! Users can still use the normal file upload or the MediaWiki API. See the paragraph on user permissions on Configuring file uploads on mediawiki.org.

License

GNU General Public License 2.0 or later

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].