wzxjohn / upload

The file upload extension for the Flarum forum with insane intelligence.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Upload by flagrow logo flagrow

GitHub license Latest Stable Version Total Downloads Donate

An extension that handles file uploads intelligently for your forum.

features

  • For images:
    • Auto watermarks.
    • Auto resizing.
  • Mime type to upload adapter mapping.
  • Whitelisting mime types.
  • Uploading on different storage services (local, imgur, AWS S3 for instance).
  • Drag and drop uploads.
  • Uploading multiple files at once (button and drag and drop both support this).
  • Easily extendable, the extension heavily relies on Events.

For a complete overview of our releases, please visit the milestones tracker on Github.

installation

composer require flagrow/upload

updating

composer update flagrow/upload
php flarum cache:clear

configuration

Enable the extension, a new tab will appear on the left hand side. This separate settings page allows you to further configure the extension.

Make sure you configure the upload permission on the permissions page as well.

Mimetype regular expression

Regular expressions allow you a lot of freedom, but they are also very difficult to understand. Here are some pointers, but feel free to ask for help on the official Flarum forums.

In case you want to allow all regular file types including video, music, compressed files and images, use this:

(video\/(3gpp|mp4|mpeg|quicktime|webm))|(audio\/(aiff|midi|mpeg|mp4))|(image\/(gif|jpeg|png))|(application\/(x-(7z|rar)-compressed|zip|arj|x-(bzip2|gzip|lha|stuffit|tar)|pdf))

A mimetype consists of a primary and secondary type. The primary type can be image, video and application for instance. The secondary is like a more detailed specification, eg png, pdf etc. These two are divided by a /, in regex you have to escape this character by using: \/.

donate

If you're happy with this extension, feel free to buy me a cup of ☕ and a 🍰 to keep me going.


changelog

Please visit the thread.

Check future milestones.

links

Flagrow is a collaboration of Flarum extension developers to provide quality, maintained extensions.

FAQ

  • AWS S3: you will need to install the league AWS s3 adapter: composer require league/flysystem-aws-s3-v3, the aws-s3 choice will now pop up in the admin settings page.
  • flarum-ext- prefix: I am aware that the convention is to prefix an extension with flarum-ext-, after considerate investigation I came to the conclusion that using the exact package name flarum-ext-upload prevented me to enable the extension in the admin panel with an error "route not found".

About

The file upload extension for the Flarum forum with insane intelligence.

License:MIT License


Languages

Language:PHP 63.3%Language:JavaScript 34.8%Language:CSS 2.0%