renatio / dropboxadapter-plugin
Dropbox filesystem adapter plugin for October CMS.
Installs: 55
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 1
Open Issues: 0
Type:october-plugin
Requires
- composer/installers: ~1.0
- october/rain: ^3.0
- spatie/flysystem-dropbox: ^2.0
This package is not auto-updated.
Last update: 2024-10-25 17:26:41 UTC
README
Dropbox v2 API filesystem adapter plugin for OctoberCMS.
Important note: Currently October does not support using Dropbox for
media
anduploads
disks. This plugin solely purpose is to allow using Dropbox as storage option for BackupManager plugin.
Installation
There are couple ways to install this plugin.
- Use October Marketplace and Add to project button.
- Use October backend area Settings > System > Updates & Plugins > Install Plugins and type Renatio.DropboxAdapter.
- Use
php artisan plugin:install Renatio.DropboxAdapter
command. - Use
composer require renatio/dropboxadapter-plugin
in project root.
Configuration
The first thing you need to do is to get an authorization token at Dropbox. A token can be generated in the App Console for any Dropbox API app. You'll find more info at the Dropbox Developer Blog.
Add new filesystem disk in disks
array in config/filesystems.php
:
'dropbox' => [
'driver' => 'dropbox',
'authorization_token' => env('DROPBOX_ACCESS_TOKEN'),
],
Set generated authorization token DROPBOX_ACCESS_TOKEN
in your .env
file.
Like this plugin?
If you like this plugin, give this plugin a Like or Make donation with PayPal.
My other plugins
Please check my other plugins.
Support
Please use GitHub Issues Page to report any issues with plugin.
Reviews should not be used for getting support or reporting bugs, if you need support please use the Plugin support link.