Title: Advanced Media Offloader
Author: Masoud Golchin
Published: <strong>20. Juni 2024</strong>
Last modified: 11. März 2026

---

Plugins durchsuchen

![](https://ps.w.org/advanced-media-offloader/assets/banner-772x250.png?rev=3484502)

![](https://ps.w.org/advanced-media-offloader/assets/icon.svg?rev=3213156)

# Advanced Media Offloader

 Von [Masoud Golchin](https://profiles.wordpress.org/masoudin/)

[Herunterladen](https://downloads.wordpress.org/plugin/advanced-media-offloader.4.4.1.zip)

 * [Details](https://de.wordpress.org/plugins/advanced-media-offloader/#description)
 * [Rezensionen](https://de.wordpress.org/plugins/advanced-media-offloader/#reviews)
 *  [Installation](https://de.wordpress.org/plugins/advanced-media-offloader/#installation)
 * [Entwicklung](https://de.wordpress.org/plugins/advanced-media-offloader/#developers)

 [Support](https://wordpress.org/support/plugin/advanced-media-offloader/)

## Beschreibung

**Advanced Media Offloader** helps you optimize your WordPress media handling by
automatically uploading your media files to S3-compatible cloud storage services.

Struggling with server space limitations? Want to improve your site’s performance
by serving media through a CDN? This plugin handles the technical work of migrating
your media to the cloud, rewriting URLs, and maintaining compatibility with your
existing content.

#### Key Benefits

 * Reduce server storage requirements and costs
 * Decrease server load when serving media files
 * Improve global site loading speeds when combined with CDN services
 * Maintain full compatibility with WordPress media functions
 * No need to modify existing content – URLs are automatically rewritten

#### Supported Cloud Providers

 * **Amazon S3** – The industry standard object storage service
 * **Cloudflare R2** – S3-compatible storage with zero egress fees
 * **DigitalOcean Spaces** – Simple object storage from DigitalOcean
 * **Backblaze B2** – Affordable S3-compatible storage with predictable pricing
 * **Wasabi** – Hot cloud storage with predictable pricing
 * **MinIO** – Any S3-compatible storage (MinIO, OVHcloud Object Storage, Scaleway,
   Linode, Vultr, IBM COS, and more)

Not sure which provider to choose? Check our [cloud storage pricing comparison](https://wpfitter.com/blog/best-cloud-storage-for-wordpress-media-pricing-comparison/?utm_source=wp-plugin&utm_medium=readme&utm_campaign=advanced-media-offloader&utm_content=pricing-comparison)
for real-world cost breakdowns.

### Features

 * **Automatic Offloading** – New media uploads are automatically sent to your cloud
   storage
 * **Smart Policies** – Create advanced rules to control exactly which files are
   offloaded and when, giving you granular control over your storage. ([Learn more](https://wpfitter.com/blog/implementing-smart-retention-policies-with-advanced-media-offloader/?utm_source=wp-plugin&utm_medium=readme&utm_campaign=advanced-media-offloader&utm_content=smart-policies))
 * **Bulk Migration & WP CLI** – Easily move existing media to the cloud with powerful
   command-line support for bulk operations and automation ([Learn more](https://wpfitter.com/blog/advmo-bulk-offload-with-wp-cli?utm_source=wp-plugin&utm_medium=readme&utm_campaign=advanced-media-offloader&utm_content=bulk-offload-cli))
 * **Thumbnail Regeneration Compatibility** – Compatible with WP-CLI `wp media regenerate`
   command and the Regenerate Thumbnails plugin. Regenerated thumbnails automatically
   offload to cloud storage. Note: Not compatible with Full Cloud Migration retention
   policy.
 * **Smart URL Rewriting** – All media URLs are automatically rewritten to serve
   from cloud storage
 * **File Versioning** – Add unique timestamps to media paths to prevent caching
   issues
 * **Flexible Retention** – Choose to keep local copies or remove them after successful
   offloading
 * **Mirror Deletion** – Optionally remove files from cloud storage when deleted
   from WordPress
 * **Custom Paths** – Configure custom path prefixes in your cloud storage
 * **Image Optimizer Compatibility** – Works with [Modern Image Formats](https://wordpress.org/plugins/webp-uploads/)(
   recommended), Imagify, and EWWW Image Optimizer. Optimized WebP and AVIF files
   are automatically offloaded alongside originals. ([Learn more](https://wpfitter.com/blog/ewww-imagify-support-added-to-advanced-media-offloader/?utm_source=wp-plugin&utm_medium=readme&utm_campaign=advanced-media-offloader&utm_content=image-optimizer-compatibility))
 * **Developer-Friendly** – Extensive action and filter hooks for extending functionality(
   [View Documentation](https://wpfitter.com/documents/advanced-media-offloader/development-hooks/?utm_source=wp-plugin&utm_medium=readme&utm_campaign=advanced-media-offloader&utm_content=developer-hooks))

#### Developer Documentation

For developers looking to extend or customize the plugin behavior, we provide comprehensive
documentation for all available hooks:

**[View Developer Hooks Documentation ](https://wpfitter.com/documents/advanced-media-offloader/development-hooks/?utm_source=wp-plugin&utm_medium=readme&utm_campaign=advanced-media-offloader&utm_content=developer-hooks)**

Quick example – skip offloading files larger than 5MB:

    ```
    add_filter('advmo_should_offload_attachment', function($should_offload, $attachment_id) {
        $file = get_attached_file($attachment_id);
        if ($file && filesize($file) > 5 * 1024 * 1024) {
            return false;
        }
        return $should_offload;
    }, 10, 2);
    ```

### Configuration

For security, cloud provider credentials are stored in your `wp-config.php` file
rather than the database.

**Note:** Domain and endpoint URLs will automatically be prefixed with `https://`
if you don’t include it, but we recommend always including the full URL for clarity.

**[Cloudflare R2](https://developers.cloudflare.com/r2/) Configuration**

    ```
        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');
    ```

**[DigitalOcean Spaces](https://www.digitalocean.com/products/spaces) Configuration**

    ```
        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');
    ```

**[MinIO](https://min.io/docs/minio/linux/administration/identity-access-management/minio-user-management.html)
Configuration**

Use this for any storage that supports the S3 API via a custom endpoint (e.g., MinIO,
OVHcloud Object Storage, Scaleway, Linode, Vultr, IBM COS). Select this if your 
provider isn’t listed separately.

    ```
        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');
        define('ADVMO_MINIO_PATH_STYLE_ENDPOINT', false); // Optional. Set to true if your MinIO server requires path-style URLs (most self-hosted MinIO setups). Default is false.
        define('ADVMO_MINIO_REGION', 'your-bucket-region'); // Optional. Set your MinIO bucket region if needed. Default is 'us-east-1'.
    ```

**[Amazon S3](https://aws.amazon.com/s3/) Configuration**

    ```
        define('ADVMO_AWS_KEY', 'your-access-key');
        define('ADVMO_AWS_SECRET', 'your-secret-key');
        define('ADVMO_AWS_BUCKET', 'your-bucket-name');
        define('ADVMO_AWS_REGION', 'your-bucket-region');
        define('ADVMO_AWS_DOMAIN', 'your-domain-url');
    ```

**[Backblaze B2](https://www.backblaze.com/apidocs/introduction-to-the-s3-compatible-api)
Configuration**

    ```
        define('ADVMO_BACKBLAZE_B2_KEY', 'your-application-key-id');
        define('ADVMO_BACKBLAZE_B2_SECRET', 'your-application-key');
        define('ADVMO_BACKBLAZE_B2_BUCKET', 'your-bucket-name');
        define('ADVMO_BACKBLAZE_B2_REGION', 'your-bucket-region');
        define('ADVMO_BACKBLAZE_B2_DOMAIN', 'your-domain-url');
        define('ADVMO_BACKBLAZE_B2_ENDPOINT', 'your-endpoint-url');
    ```

**[Wasabi](https://docs.wasabi.com/docs/creating-a-new-access-key) Configuration**

    ```
        define('ADVMO_WASABI_KEY', 'your-access-key');
        define('ADVMO_WASABI_SECRET', 'your-secret-key');
        define('ADVMO_WASABI_BUCKET', 'your-bucket-name');
        define('ADVMO_WASABI_REGION', 'your-bucket-region');
        define('ADVMO_WASABI_DOMAIN', 'your-domain-url');
    ```

### 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/](https://aws.amazon.com/sdk-for-php/)

## Screenshots

 * [[
 * Plugin settings page – Configure your cloud storage settings and offload options.
 * [[
 * Media Overview page – Media Overview and Bulk Offload
 * [[
 * Attachment details page – View the offload status of individual media files.
 * [[

## Installation

 1. Upload the plugin files to `/wp-content/plugins/advanced-media-offloader/` or install
    directly through WordPress
 2. Activate the plugin through the ‚Plugins‘ menu in WordPress
 3. Go to „Media Offloader“ in the admin menu to configure settings
 4. Add your cloud provider credentials to `wp-config.php` (see configuration examples
    below)
 5. Test your connection and start offloading media

## FAQ

### Does this plugin support other cloud storage platforms?

Currently supports Amazon S3, Backblaze B2, Cloudflare R2, DigitalOcean Spaces, 
MinIO & Wasabi. Additional providers are on the roadmap based on user demand.

### What happens to the media files already uploaded on my server?

Existing files remain untouched until you explicitly use the bulk offload feature.
New uploads are automatically processed based on your settings.

### How exactly does URL rewriting work?

The plugin hooks into WordPress core media functions using `wp_get_attachment_url`
and related filters. This ensures compatibility with themes, plugins, and core functions
without modifying database URLs.

### Can I rollback if needed?

Files offloaded with „Retain Local Files“ can be served locally by deactivating 
the plugin. For full cloud migrations, you’ll need to re-download media files if
you want to revert.

### How are image sizes and thumbnails handled?

All generated image sizes are offloaded alongside the original. URL rewriting works
for all sizes and srcset attributes.

### Will this work with page builders and media-heavy plugins?

Yes, since the plugin uses WordPress core hooks for URL rewriting, it’s compatible
with Elementor, Beaver Builder, WooCommerce, and most other plugins that use standard
WordPress media functions.

### Does it support private files with access control?

The free version only supports publicly accessible files. Private files with authenticated
access may be added in a future premium version.

### What happens if I remove a media file from the WordPress Media Library?

With „Mirror Delete“ enabled, corresponding cloud files are automatically removed.
Otherwise, files remain in cloud storage, potentially creating orphaned objects.

### How can I debug issues with file offloading?

The plugin logs errors to attachment metadata. Check the Media Overview page for
detailed error reporting or enable WordPress debug logging for more information.

### What’s the recommended bucket configuration?

For optimal performance:
 1. Enable CORS configuration 2. Set appropriate public
read permissions 3. Configure proper region (closest to your audience) 4. Consider
using a CDN for global distributions

### How do I configure public access for my bucket?

By default, the plugin sets `public-read` ACL on uploaded objects. However, some
providers don’t support ACLs, and AWS S3 has ACLs disabled by default on new buckets
since April 2023. You should configure bucket-level public access using your provider’s
bucket policies.

If you encounter `AccessControlListNotSupported` errors or need to disable ACLs,
add the following code to your theme’s `functions.php` or a custom plugin:

    ```
    add_filter('advmo_object_acl', '__return_false');
    ```

## Rezensionen

![](https://secure.gravatar.com/avatar/25bad20f7f17a6d63e8cadcb19f0945abb898e009ab271f1bed104e18b7ea555?
s=60&d=retro&r=g)

### 󠀁[Super great!](https://wordpress.org/support/topic/super-great-45/)󠁿

 [olfrob](https://profiles.wordpress.org/olfrob/) 24. März 2026

Thank you for this amazing plugin! It works like a charm, out of the box. I’ve tried
it with all sorts of different s3 storage providers, even some lesser known. It 
worked with all, custom URLs and all… Just great, congrats!

![](https://secure.gravatar.com/avatar/d72f9df4fdf98df16c56a5c5e2895362023fe18b6713b6ab122308b6f89950ce?
s=60&d=retro&r=g)

### 󠀁[Recommended](https://wordpress.org/support/topic/recommended-488/)󠁿

 [dbrabyn](https://profiles.wordpress.org/dbrabyn/) 1. Februar 2026

Slick plugin that works well for me with Cloudflare’s R2.

![](https://secure.gravatar.com/avatar/6489a6389ae94bb55b8dfd1c930fd704040f975e2cb502a9dd5965474701b970?
s=60&d=retro&r=g)

### 󠀁[Amazing Plugin](https://wordpress.org/support/topic/amazing-plugin-2839/)󠁿

 [zmzdtc888](https://profiles.wordpress.org/zmzdtc888/) 12. Januar 2026

I don’t have experience with other offloading plugins, but Advanced Media Offloader
has been an absolute joy to use — simple, intuitive, and straightforward.

![](https://secure.gravatar.com/avatar/80820466b6a3443f175d3b783565a86168fad02299eb7704308d08a9d2b1a76e?
s=60&d=retro&r=g)

### 󠀁[Great Plugin – Recommend](https://wordpress.org/support/topic/great-plugin-recommend-4/)󠁿

 [dan009](https://profiles.wordpress.org/dan009/) 12. Januar 2026

Fantastic plugin. Easy to setup and rolling. All working fine with no issue. Much
appreciated for the effort you guys put in. Thank you

![](https://secure.gravatar.com/avatar/f76c8433aaf70ec20504797bf006d8b8150d56114a1460c6b9c8c8437bd91cad?
s=60&d=retro&r=g)

### 󠀁[Super support!](https://wordpress.org/support/topic/super-support-202/)󠁿

 [holden71](https://profiles.wordpress.org/holden71/) 6. Dezember 2025

I tried several plugins—this one is the cleanest and easiest to understand. Top-
notch support, thanks to the developer! Keep up the good work!

![](https://secure.gravatar.com/avatar/4c16ea95648657b96b4a1c95aa546f4ba6587e7d5ba93771c192ad8dcb46a87b?
s=60&d=retro&r=g)

### 󠀁[A great plugin. For websites with huge media files.](https://wordpress.org/support/topic/a-great-plugin-for-websites-with-huge-media-files/)󠁿

 [hagal](https://profiles.wordpress.org/hagal/) 5. Dezember 2025

I had a challenging task — exporting about 4 TB of media files to R2. I personally
reached out to the plugin developer, Masoud Golchin, and within just two days he
configured everything so that my site worked flawlessly. The support was exceptional,
and the plugin is incredibly reliable and efficient.There is simply no more stable
alternative out there.A solid 5 stars!

 [ Alle 44 Rezensionen lesen ](https://wordpress.org/support/plugin/advanced-media-offloader/reviews/)

## Mitwirkende und Entwickler

„Advanced Media Offloader“ ist Open-Source-Software. Folgende Menschen haben an 
diesem Plugin mitgewirkt:

Mitwirkende

 *   [ Masoud Golchin ](https://profiles.wordpress.org/masoudin/)
 *   [ WP Fitter ](https://profiles.wordpress.org/wpfitter/)
 *   [ Reza Bahreynipour ](https://profiles.wordpress.org/bahreynipour/)
 *   [ Morteza Mohammadnezhad ](https://profiles.wordpress.org/teledark/)

„Advanced Media Offloader“ wurde in 5 Sprachen übersetzt. Danke an [die Übersetzer](https://translate.wordpress.org/projects/wp-plugins/advanced-media-offloader/contributors)
für ihre Mitwirkung.

[Übersetze „Advanced Media Offloader“ in deine Sprache.](https://translate.wordpress.org/projects/wp-plugins/advanced-media-offloader)

### Interessiert an der Entwicklung?

[Durchstöbere den Code](https://plugins.trac.wordpress.org/browser/advanced-media-offloader/),
sieh dir das [SVN-Repository](https://plugins.svn.wordpress.org/advanced-media-offloader/)
an oder abonniere das [Entwicklungsprotokoll](https://plugins.trac.wordpress.org/log/advanced-media-offloader/)
per [RSS](https://plugins.trac.wordpress.org/log/advanced-media-offloader/?limit=100&mode=stop_on_copy&format=rss).

## Änderungsprotokoll

#### 4.4.1

 * Fixed: Custom/intermediate image sizes in src attribute being replaced with the
   full-size URL when using page builders like Elementor

#### 4.4.0

 * Added: Imagify compatibility for WebP/AVIF offloading
 * Added: EWWW Image Optimizer compatibility

#### 4.3.2

 * Fixed: Visual Composer compatibility – resolved PHP TypeError caused by strict
   type hints on admin_enqueue_scripts callbacks

#### 4.3.1

 * Added: `advmo_object_acl` filter to customize or disable object-level ACL permissions

#### 4.3.0

 * Added: New visual badges in Media Library show offload status at a glance. Cloud
   icon for offloaded files, warning icon for failed uploads.
 * Added: Visual „Deleting…“ loading indicator with spinner in Media Library attachment
   modal when deleting offloaded media
 * Added: Offload status filter dropdown in Media Library for quick filtering by
   offload state.
 * Improved: Optimized cloud deletion performance using batched deleteObjects API(
   up to 1000 keys per request) for faster deletion of attachments with multiple
   sizes
 * Fixed: MinIO “Use Path-Style Endpoint” now correctly respects boolean `wp-config.
   php` constants (e.g. `define('ADVMO_MINIO_PATH_STYLE_ENDPOINT', true);`).

#### 4.2.3

 * Fixed: TypeError when uploading non-image files (SVG, ZIP, PDF)

#### 4.2.2

 * Added: Compatibility with WordPress 6.9
 * Added: Full Compatibility with [Modern Image Formats](https://wordpress.org/plugins/webp-uploads/)
 * Fixed: Minor changes and improvements

#### 4.2.1

 * Fix: Checkbox states for credential fields now properly persist when unchecked
 * Fix: Deletion failure when WordPress year/month folders are disabled

#### 4.2.0

 * New: Added compatibility for thumbnail regeneration with WP-CLI `wp media regenerate`
   command and the Regenerate Thumbnails plugin. Regenerated thumbnails now automatically
   offload to cloud storage. Note: This feature does not work with Full Cloud Migration
   retention policy.
 * New: Added the ability to configure cloud provider credentials through the WordPress
   admin settings page while maintaining backward compatibility with wp-config.php
   constants. Constants take priority and disable corresponding fields when defined.
 * New: Added setting to toggle automatic cloud offloading for new uploads
 * New: Added customizable Name field S3-compatible providers to identify specific
   storage services (e.g., MinIO, OVHcloud, Scaleway). Default is „MinIO“ with backward
   compatibility for existing installations.
 * Fix: Minor changes and improvements

#### 4.1.1

 * New: Added Backblaze B2 support – affordable S3-compatible cloud storage with
   predictable pricing
 * Improved: Automatic URL normalization – Domain and endpoint URLs are now automatically
   prefixed with `https://` if missing, eliminating common configuration errors

#### 4.1.0

 * New: Added `advmo_cloud_providers` filter to allow adding, removing, or customizing
   the list of available cloud providers
 * New: Added Unique Filename Protection – UniqueFilenameObserver automatically 
   prevents file overwrites when full cloud migration is enabled
 * New: Added domain filters for developers to programmatically modify CDN/custom
   domains for each provider (`advmo_aws_domain`, `advmo_cloudflare_r2_domain`, `
   advmo_dos_domain`, `advmo_minio_domain`, `advmo_wasabi_domain`)
 * New: Added `advmo_should_upload_original_image` filter to control whether original
   images should be uploaded to cloud (default: true)
 * Fix: Original images are now correctly uploaded to and deleted from cloud storage
   alongside scaled versions
 * Fix: Background processes that could get stuck now have proper recovery mechanisms
 * Fix: Disabled `use_aws_shared_config_files` option across all S3-compatible providers
   to prevent potential conflicts and security issues

#### 4.0.3

 * Fixed memory exhaustion and fatal errors when handling offloaded SVG files.

#### 4.0.2

 * Improved SVG support and fixed issues with Elementor SVG icons after offloading.

#### 4.0.1

 * feat: add advmo_should_offload_attachment filter to conditionally skip offloading

#### 4.0.0

 * Added: WP CLI command `wp advmo offload` for bulk operations and automation (
   [Learn more](https://wpfitter.com/blog/advmo-bulk-offload-with-wp-cli))
 * Added: Individual „Offload Now“ button in attachment edit screen for on-demand
   offloading
 * Added: Retry functionality for failed offloads with dedicated „Retry Offload“
   button
 * Fixed: Admin notices from other plugins now properly disabled on Media Overview
   page
 * Improved: Enhanced admin interface consistency across all plugin pages

#### 3.3.5

 * Fixed: Minor improvements and bug fixes

#### 3.3.4

 * Fixed: Minor improvements and bug fixes
 * Updated: WordPress compatibility improvements

#### 3.3.3

 * Fixed: Use original file’s directory for sized image deletion, resolving an issue
   where thumbnails in older uploads weren’t being deleted properly
 * Fixed: Corrected a bug in the mirror delete functionality ensuring cloud files
   are properly removed when local files are deleted
 * Added: HTTPS protocol requirement notices for domain and endpoint URLs for improved
   security
 * Refactored: Standardized plugin settings approach for better code maintainability
 * Optimized: Improved bulk processing with direct SQL queries for better performance
 * Fixed: Added proper nonce verification and capability checks to all AJAX endpoints
   for enhanced security
 * Fixed: Preserved checkbox values during settings sanitization to prevent settings
   from being inadvertently reset

#### 3.3.2

 * Improved accessibility and consistency in admin interface
 * Added RTL stylesheet and conditional loading for better localization support
 * Fixed minor bugs and made improvements.

#### 3.3.1

 * Fixed minor bugs and made improvements.

#### 3.3.0

 * Added service container and dependency injection architecture
 * Improved connection testing with better error handling
 * Fixed bulk offload process to prevent stuck operations
 * Enhanced UI with clearer cloud provider selection
 * Improved documentation with detailed provider setup instructions

#### 3.2.0

 * Added support for Wasabi cloud storage
 * Enhanced plugin performance and stability
 * Fix minor bugs

#### 3.1.0

 * Fixed and optimized connection test button functionality
 * Fixed minor bugs and made improvements.

#### 3.0.0

 * Introduced a new user interface (UI) and improved user experience (UX) for the
   settings page.
 * Added functionality to offload and sync edited images with cloud storage.
 * Improved bulk offloading to cloud storage by fixing various bugs.
 * Implemented error logging for bulk offload operations.
 * Added ability to download a CSV file with detailed logs for attachments that 
   encountered errors during offloading.
 * Enhanced overall security of the plugin.
 * Fixed various issues related to bulk offload JavaScript functionality.
 * Improved error handling and notifications for media attachments in the library.
 * Refactored attachment deletion methods for better performance and reliability.

#### 2.1.0

 * Implemented php-scoper to isolate AWS PHP SDK namespaces, preventing conflicts
   with other plugins using different versions of the same packages.
 * Fixed minor bugs and made improvements.

#### 2.0.3

 * Fixed minor bugs and made improvements.

#### 2.0.2

 * Display offloaded version of images in post content when already offloaded to
   improve loading times and reduce bandwidth usage.
 * Fixed the srcset attribute not displaying for images when object versioning is
   enabled.

#### 2.0.1

 * Fixed minor bugs and made improvements.

#### 2.0.0

 * Refactored the Advanced Media Offloader codebase.
 * Added new action hooks for custom actions before and after critical operations.
 * Fixed compatibility issue with the Performance Lab WordPress plugin.
 * Fixed a bug in bulk offloading media files.
 * Added support for MinIO path-style endpoint configuration using the ADVMO_MINIO_PATH_STYLE_ENDPOINT
   constant.
 * Fixed minor bugs and made improvements.

#### 1.6.0

 * Refactored the code base to improve maintainability and readability, resulting
   in enhanced performance across the plugin.
 * Resolved an issue where the bulk offload process would become unresponsive
 * Added a button to cancel the bulk offload process, providing users with greater
   control during file transfers.

#### 1.5.2

 * Fix a minor bug related to the path of existing media files when deleting local
   files.

#### 1.5.1

 * Fix minor bugs to improve bulk offload process

#### 1.5.0

 * Added support for Amazon S3 cloud storage
 * Enhanced plugin performance and stability
 * Fix minor bugs

#### 1.4.5

 * Fix minor bugs with Min.io

#### 1.4.4

 * New Feature: Custom Path Prefix for Cloud Storage
 * Fix minor bugs

#### 1.4.3

 * Add Version to Bucket Path: Automatically add unique timestamps to your media
   file paths to ensure the latest versions are always delivered
 * Add Mirror Delete: Automatically delete local files after successful upload to
   Cloud Storage.
 * Improve Settings UI: Enhanced the user interface of the settings page.

#### 1.4.2

 * Added ‚Sync Local and Cloud Deletions‘ feature to automatically remove media 
   from cloud storage when deleted locally.
 * Enhanced WooCommerce compatibility: Added support for WooCommerce-specific image
   sizes and optimized handling of product images.

#### 1.4.1

 * Fix minor bugs related to Bulk offloading the existing media files

#### 1.4.0

 * Added bulk offload feature for media files (50 per batch in free version)
 * Fixed subdir path issue for non-image files
 * UI Improvements
 * Fixed minor bugs

#### 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.

## Meta

 *  Version **4.4.1**
 *  Zuletzt aktualisiert **vor 1 Monat**
 *  Aktive Installationen **4.000+**
 *  WordPress-Version ** 5.6 oder höher **
 *  Getestet bis **6.9.4**
 *  PHP-Version ** 8.1 oder höher **
 *  Sprachen
 * [Dutch](https://nl.wordpress.org/plugins/advanced-media-offloader/), [English (US)](https://wordpress.org/plugins/advanced-media-offloader/),
   [Persian](https://fa.wordpress.org/plugins/advanced-media-offloader/), [Russian](https://ru.wordpress.org/plugins/advanced-media-offloader/),
   [Spanish (Chile)](https://cl.wordpress.org/plugins/advanced-media-offloader/)
   und [Spanish (Spain)](https://es.wordpress.org/plugins/advanced-media-offloader/).
 *  [Übersetze in deine Sprache](https://translate.wordpress.org/projects/wp-plugins/advanced-media-offloader)
 * Schlagwörter
 * [cloudflare](https://de.wordpress.org/plugins/tags/cloudflare/)[media library](https://de.wordpress.org/plugins/tags/media-library/)
   [offload](https://de.wordpress.org/plugins/tags/offload/)[s3](https://de.wordpress.org/plugins/tags/s3/)
   [storage](https://de.wordpress.org/plugins/tags/storage/)
 *  [Erweiterte Ansicht](https://de.wordpress.org/plugins/advanced-media-offloader/advanced/)

## Bewertungen

 4.7 von 5 Sternen.

 *  [  40 5-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/advanced-media-offloader/reviews/?filter=5)
 *  [  0 4-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/advanced-media-offloader/reviews/?filter=4)
 *  [  0 3-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/advanced-media-offloader/reviews/?filter=3)
 *  [  1 2-Sterne-Rezension     ](https://wordpress.org/support/plugin/advanced-media-offloader/reviews/?filter=2)
 *  [  2 1-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/advanced-media-offloader/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/advanced-media-offloader/reviews/#new-post)

[Alle Rezensionen anzeigen](https://wordpress.org/support/plugin/advanced-media-offloader/reviews/)

## Mitwirkende

 *   [ Masoud Golchin ](https://profiles.wordpress.org/masoudin/)
 *   [ WP Fitter ](https://profiles.wordpress.org/wpfitter/)
 *   [ Reza Bahreynipour ](https://profiles.wordpress.org/bahreynipour/)
 *   [ Morteza Mohammadnezhad ](https://profiles.wordpress.org/teledark/)

## Support

Behobene Probleme in den letzten zwei Monaten:

     6 von 9

 [Support-Forum anzeigen](https://wordpress.org/support/plugin/advanced-media-offloader/)

## Spenden

Möchtest du die Weiterentwicklung dieses Plugins unterstützen?

 [ Für dieses Plugin spenden ](https://buymeacoffee.com/wpfitter?utm_source=wp-plugin&utm_medium=readme&utm_campaign=advanced-media-offloader&utm_content=readme-donate)