Descrizione
Advanced Media Offloader automatically uploads media attachments from your WordPress site to an S3-compatible cloud storage, replacing the URLs appropriately to serve the media from the cloud. This can help reduce server load, increase page speed, and optimize media delivery.
Features
- Automatic upload of new media attachments to S3-compatible cloud storage.
- Rewrites URLs for media files to serve them directly from cloud storage.
- Provides hooks for further extension.
Using the S3 PHP SDK
The Advanced Media Offloader utilizes the AWS SDK for PHP to interact with S3-compatible cloud storage. This powerful SDK provides an easy-to-use API for managing your cloud storage operations, including file uploads, downloads, and more. The SDK is maintained by Amazon Web Services, ensuring high compatibility and performance with S3 services.
For more information about the AWS SDK for PHP, visit:
https://aws.amazon.com/sdk-for-php/
Screenshot
Installazione
- In your WordPress admin panel, go to Plugins > Add New.
- Search for “Advanced Media Offloader” and click “Install Now”.
- Once installed, click “Activate” to enable the plugin.
- After activation, go to “Media Offloader” in the WordPress dashboard to access the plugin settings.
- To configure the plugin, you need to add your S3-compatible cloud storage credentials to your wp-config.php file using constants. Here are examples for different providers:
-
For Cloudflare R2, add the following to wp-config.php:
define('ADVMO_CLOUDFLARE_R2_KEY', 'your-access-key'); define('ADVMO_CLOUDFLARE_R2_SECRET', 'your-secret-key'); define('ADVMO_CLOUDFLARE_R2_BUCKET', 'your-bucket-name'); define('ADVMO_CLOUDFLARE_R2_DOMAIN', 'your-domain-url'); define('ADVMO_CLOUDFLARE_R2_ENDPOINT', 'your-endpoint-url');
-
For DigitalOcean Spaces, add the following to wp-config.php:
define('ADVMO_DOS_KEY', 'your-access-key'); define('ADVMO_DOS_SECRET', 'your-secret-key'); define('ADVMO_DOS_BUCKET', 'your-bucket-name'); define('ADVMO_DOS_DOMAIN', 'your-domain-url'); define('ADVMO_DOS_ENDPOINT', 'your-endpoint-url');
-
For MinIO, add the following to wp-config.php:
define('ADVMO_MINIO_KEY', 'your-access-key'); define('ADVMO_MINIO_SECRET', 'your-secret-key'); define('ADVMO_MINIO_BUCKET', 'your-bucket-name'); define('ADVMO_MINIO_DOMAIN', 'your-domain-url'); define('ADVMO_MINIO_ENDPOINT', 'your-endpoint-url');
FAQ
-
Does this plugin support other cloud storage platforms?
-
Currently, the plugin supports only Cloudflare R2 DigitalOcean Spaces & MinIO, but we are working on adding support for other cloud storage platforms such as Amazon S3 and more.
-
What happens to the media files already uploaded on my server?
-
They will remain on your server, and they will be served from your server.
-
How does the plugin handle media files that are already uploaded to my cloud storage?
-
The plugin will automatically detect and rewrite URLs for these files, so they can be served from the cloud storage.
-
What happens to media files uploading to my cloud storage?
-
By default, uploaded files remain on your server after offloading. However, you can now choose to delete local files after successful upload to the Cloud Storage via the settings page. Note that even if you opt for deletion, the original file is always kept on the server for backup. Only custom-sized versions are removed locally when this option is enabled.
Recensioni
Contributi e sviluppo
“Advanced Media Offloader” è un software open source. Le persone che hanno contribuito allo sviluppo di questo plugin sono indicate di seguito.
CollaboratoriTraduci “Advanced Media Offloader” nella tua lingua.
Ti interessa lo sviluppo?
Esplora il codice segui il repository SVN, segui il log delle modifiche tramite RSS.
Changelog
1.3.0
- UI Improvements
- Fixed minor bugs
1.2.0
- Added MinIO as a new cloud storage provider
- Introduced an option to choose if local files should be deleted after offloading to cloud storage
- Implemented UI improvements for the plugin settings page
- Added Offload status to Attachment details section in Media Library
- Fixed minor bugs
1.1.0
- Improved the code base to fix some issues
- Added support for DigitalOcean Spaces
1.0.0
- Initial release.