Download the PHP package 0.1.x-dev/upload without Composer
On this page you can find all versions of the php package 0.1.x-dev/upload. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download 0.1.x-dev/upload
More information about 0.1.x-dev/upload
Files in 0.1.x-dev/upload
Package upload
Short Description The file upload extension for the Flarum forum with insane intelligence.
License MIT
Homepage https://friendsofflarum.org
Informations about the package upload
Upload by FriendsOfFlarum
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.
- Extender interface to disable or force particular adapters (see below)
Installation
Install manually with composer:
Updating
Updating from Flagrow
This extension replaces 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:
-
Disable the Upload extension in the admin panel.
- Run:
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:
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: \/
.
Disable or Force a particular adapter
In some circumstances, you may wish to either disable an adapter, or force the use of one. This is set in your root extend.php
file.
For example, you may disable imgur
Chaining of multiple commands is also possible:
You may also force an adapter:
Adapter names currently available:
local
imgur
qiniu
aws-s3
FAQ
- AWS S3: read the AWS S3 configuration page.
- Adding Templates: read the Custom Templates wiki page.
Links
An extension by FriendsOfFlarum
All versions of upload with dependencies
ramsey/uuid Version ^3.5.2 || ^4
softcreatr/php-mime-detector Version ^3.0
guzzlehttp/guzzle Version ^6.0 || ^7.0
ext-json Version *