Plugin info

Total downloads: 8,971
Active installs: 10
Total reviews: 5
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 3 language(s)
Contributors: 2
Last updated: 12/17/2020 (1839 days ago)
Added to WordPress: 5/25/2016 (9 years old)
Minimum WordPress version: 4.7.0
Tested up to WordPress version: 5.6.16
Minimum PHP version: 5.6

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 1839 days ago • 5 reviews

22/100

Is ResizeFly abandoned?

Possibly abandoned (last update 1839 days ago).

Compatibility

Requires WordPress: 4.7.0
Tested up to: 5.6.16
Requires PHP: 5.6

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Auto Cloudinary
Rating 4.4/5 (14 reviews)Active installs 200

Description

Instead of creating image sizes on upload, this plugin only creates them when requested.

Normally after activating a new theme or plugin that adds new image sizes, you will have to use a tool like Regenerate Thumbnails to create the newly registered image sizes. Depending on the size of the media library and the “power” of your server, this might take a while or even take several tries to process all your images; and in the end, you don’t even know if you’ll need all of the resized images.

This plugin takes care of the resizing dynamically and creates the requested size the moment it is first requested—and only when it is requested.

Support

For users: Please use the support forums on wordpress.org
For developers: Head over to the Github repository
For everything else, find me on twitter or on slack

Installation

  1. Upload the plugin to your plugins directory (usually wp-content/plugins)
  2. Make sure you have Pretty Permalinks enabled
  3. Activate the plugin

The plugin handles the images from here on. The resized images are saved in a subfolder inside your uploads directory.

Prerequisites

You’ll need at least PHP 5.5, WordPress 4.7 and either GD or Imagick on your server.

Uninstalling

If you want to uninstall the plugin for good, make sure to regenerate your image thumbnails/sizes afterward using Regenerate Thumbnails or similar.

Frequently Asked Questions

Why does this not work when using NGINX?

Often your NGINX is configured in a way to serve the image as a static resource and in case of failure throw a 404 Not Found error.

To work around this, make sure the request is sent to WordPress when the image cannot be found.

Add a directive like:

location ~* (/[^/]+/)?uploads/(.+\.(png|gif|jpe?g)) {
    try_files $uri $uri/ /index.php?q=$uri&$args;
    expires max;
    log_not_found off;
    access_log off;
}

If you have one long location directive listing all the static file formats (css, js, zip, etc.), you can also just drop the try_files $uri $uri/ /index.php?q=$uri&$args; in there.

Why is there a `resizefly-duplicate` directory in my uploads folder?

The plugin stores an optimized duplicate of each image in this folder. The reason for this is, that image resizing puts a strain on your server and uses comparably a lot of resources. To minimize this ResizeFly creates an optimized copy from which the smaller image sizes will be created.

Review feed

wellbeingtips
9/3/2016

Nice idea!

Works as described!

Screenshots

No screenshots available

Changelog

3.2.6

  • fix issue with trying to add number to string
  • revert methods to get image id to prevent db strain

see https://github.com/alpipego/resizefly/releases for full changelog