# upload **Repository Path**: FlarumChina/upload ## Basic Information - **Project Name**: upload - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2020-02-21 - **Last Updated**: 2022-03-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Upload by FriendsOfFlarum [![MIT license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/FriendsOfFlarum/upload/blob/master/LICENSE.md) [![Latest Stable Version](https://img.shields.io/packagist/v/fof/upload.svg)](https://packagist.org/packages/fof/upload) [![Total Downloads](https://img.shields.io/packagist/dt/fof/upload.svg)](https://packagist.org/packages/fof/upload) 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. ## Installation Use [Bazaar](https://discuss.flarum.org/d/5151) or install manually: ```sh composer require fof/upload ``` ## Updating ```sh composer require fof/upload php flarum migrate php flarum cache:clear ``` ### Updating from Flagrow This extension replaces [Flagrow Upload](https://packagist.org/packages/flagrow/upload). To upgrade from the old extension to the new one: - **Backup your data!** You should backup the database and the uploaded files. - Make sure the latest version of Flagrow upload is installed and migrations have run: ```sh composer require flagrow/upload composer show flagrow/upload # You should see "versions: * 0.7.1" on the 4th line of output php flarum migrate ``` - Disable the Upload extension in the admin panel. - Run: ```sh composer require fof/upload ``` Composer should let you know that `flagrow/upload` has been automatically removed. - Enable the new extension in the admin panel. - Your existing configuration and uploads meta will be migrated to FoF Upload automatically. - The same file locations on the disk are used by FoF Upload, it means the files don't need to be moved. ## 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: ```text (video\/(3gpp|mp4|mpeg|quicktime|webm))|(audio\/(aiff|midi|mpeg|mp4))|(image\/(gif|jpeg|png))|(application\/(x-(7z|rar|zip)-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: `\/`. ## FAQ - __AWS S3__: read the [AWS S3 configuration page](https://github.com/FriendsOfFlarum/upload/wiki/aws-s3). ## Links - [Flarum Discuss post](https://discuss.flarum.org/d/4154) - [Source code on GitHub](https://github.com/FriendsOfFlarum/upload) - [Report an issue](https://github.com/FriendsOfFlarum/upload/issues) - [Download via Packagist](https://packagist.org/packages/fof/upload) An extension by [FriendsOfFlarum](https://github.com/FriendsOfFlarum)