SG Optimizer

Description

This plugin is designed to link WordPress with the SiteGround Performance services. It WILL NOT WORK on another hosting provider.

The SG Optimizer plugin has few different parts handling speciffic performance optimizations:

Configuration

For detailed information on our plugin and how it works, please check out our SG Optimizer Tutorial.

SuperCacher Settings

In this tab, you can configure your Dynamic Caching to store your content in the server’s memory for faster access and Memcached which stores frequently executed queries to your database and reuses them for better performance. Make sure you’ve enabled them from your Site Tools or cPanel before using the plugin. You can also enable Automatic Cache purge. This will perform a Full Purge on page, posts, and category deletion, plugin and theme activation, deactivation, or update, and on WordPress core updates. Enabling the Browser-specific caching will create different cache versions based on the user agent used. From Exclude Post Types you can exclude the ones you don’t want to be cached at all. You can also exclude specific URLs or use a wildcard to exclude any sub-pages of a specific “parent-page”. We have also provided a test tool where you can check if a specific URL has Dynamic caching actually running.

Environment Optimization

Here, you can force HTTPS for your site, enable or disable Gzip Compression and Browser Caching rules. You can activate Database Optimization which will remove all unnecessary items from your database and optimize its tables. If you are using the InnoDB storage engine, the optimization of tables is done automatically by the engine. Use DNS-Prefetching to increase load speeds for external resources. It works by resolving the domain name, before a resource is requested. You can also manage Heartbeat Control to modify the frequency of the WP Heartbeat for different locations. By default, the WordPress Heartbeat API checks every 15 seconds on your post edit pages and every 60 seconds on your dashboard and front end whether there are scheduled tasks to be executed. With this option, you can make the checks run less frequently or completely disable them.

Frontend Optimization

In this tab, you can enable or disable Minification of your HTML, JS and CSS resources. You can activate/deactivate JS and CSS combinations to reduce the numbers of requests to the server. With the Web Fonts Optimization we’re changing the default way we load Google fonts. A preconnect link for Google’s font repository will be added in your head tag. This informs the browser that your page intends to establish a connection to another origin, and that you’d like the process to start as soon as possible. In addition, all other local fonts will be preloaded so browsers can cache and render them faster. Also when combined with CSS Combination, we will change the font-display property to swap or add it if it’s missing, so we ensure faster rendering. You can Disable Emojis support in your pages to prevent WordPress from detecting and generating emojis on your pages. You can also Remove Query Strings from static resources to improve their caching.

Image Optimization

Here, you can enable or disable automatic optimization for your newly uploaded images or bulk optimize your old ones. You can enable the generation of WebP images for newly uploaded images or generate WebP copies of your existing ones. WebP is a next generation image format supported by modern browsers which greatly reduces the size of your images. If the browser does not support WebP, the original images will be loaded. If you wish, you can delete all WebP copies of your images and original images will be loaded by default. You can also enable or disable Lazy Load for various assets such as iframes, videos, thumbnails, widgets, shortcodes and more. You can also enable Lazy Load for mobile requests. You have an option to exclude specific images from Lazy Loading. This is done by adding the class of the image in the tab.

Speed Test

Our performance check is powered by Google PageSpeed. Here you can check how well your website is optimized. The detailed tests result will provide you with additional information on what can be optimized more.

Full-page Caching on CloudFlare

Тhis optimization links your WordPress site with Cloudflare and sets the necessary rules and workers in order to enable full-page caching on Cloudflare edges in order to improve your TTFB and overall site performance. The tab will be available only if you have properly configured your installation to work with the CDN.

Plugin Compatibility

If your plugin does not trigger standard WordPress hooks or you need us to purge the cache, you can use this public function in your code:

if (function_exists('sg_cachepress_purge_cache')) {
    sg_cachepress_purge_cache();
}

Preferrably, you can pass an URL to the function to clear the cache just for it instead of purging the entire cache. For example:

if (function_exists('sg_cachepress_purge_cache')) {
    sg_cachepress_purge_cache('https://yoursite.com/pluginpage');
}

You can exclude styles from being combined and minified using the filters we’ve designed for that purpose. Here’s an example of the code, you can add to your functions.php file:

add_filter( 'sgo_css_combine_exclude', 'css_combine_exclude' );
function css_combine_exclude( $exclude_list ) {
    // Add the style handle to exclude list.
    $exclude_list[] = 'style-handle';
    $exclude_list[] = 'style-handle-2';

    return $exclude_list;
}

add_filter( 'sgo_css_minify_exclude', 'css_minify_exclude' );
function css_minify_exclude( $exclude_list ) {
    // Add the style handle to exclude list.
    $exclude_list[] = 'style-handle';
    $exclude_list[] = 'style-handle-2';

    return $exclude_list;
}

You can exclude script from being minified using the filter we’ve designed for that purpose. Here’s an example of the code, you can add to your functions.php file:

add_filter( 'sgo_js_minify_exclude', 'js_minify_exclude' );
function js_minify_exclude( $exclude_list ) {
    $exclude_list[] = 'script-handle';
    $exclude_list[] = 'script-handle-2';

    return $exclude_list;
}

You can exclude script from being combined using the filter we’ve designed for that purpose. Here’s an example of the code, you can add to your functions.php file:

add_filter( 'sgo_javascript_combine_exclude', 'js_combine_exclude' );
function js_combine_exclude( $exclude_list ) {
    $exclude_list[] = 'script-handle';
    $exclude_list[] = 'script-handle-2';

    return $exclude_list;
}

You can exclude external script from being combined using the filter we’ve designed for that purpose. Here’s an example of the code, you can add to your functions.php file:

add_filter( 'sgo_javascript_combine_excluded_external_paths', 'js_combine_exclude_external_script' );
function js_combine_exclude_external_script( $exclude_list ) {
    $exclude_list[] = 'script-host.com';
    $exclude_list[] = 'script-host-2.com';

    return $exclude_list;
}

You can exclude inline script from being combined using the filter we’ve designed for that purpose. Here’s an example of the code, you can add to your functions.php file:

add_filter( 'sgo_javascript_combine_excluded_inline_content', 'js_combine_exclude_inline_script' );
function js_combine_exclude_inline_script( $exclude_list ) {
    $exclude_list[] = 'first few symbols of inline content script';

    return $exclude_list;
}

You can exclude script from being loaded asynchronous using the filter we’ve designed for that purpose. Here’s an example of the code, you can add to your functions.php file:

add_filter( 'sgo_js_async_exclude', 'js_async_exclude' );
function js_async_exclude( $exclude_list ) {
    $exclude_list[] = 'script-handle';
    $exclude_list[] = 'script-handle-2';

    return $exclude_list;
}

You can exclude url or url that contain specific query param using the following filters:

add_filter( 'sgo_html_minify_exclude_params', 'html_minify_exclude_params' );
function html_minify_exclude_params( $exclude_params ) {
    // Add the query params that you want to exclude.
    $exclude_params[] = 'test';

    return $exclude_params;
}

add_filter( 'sgo_html_minify_exclude_urls', 'html_minify_exclude' );
function html_minify_exclude( $exclude_urls ) {
    // Add the url that you want to exclude.
    $exclude_urls[] = 'http://mydomain.com/page-slug';

    return $exclude_urls;
}

You can exclude images from Lazy Load using the following filter:

add_filter( 'sgo_lazy_load_exclude_classes', 'exclude_images_with_specific_class' );
function exclude_images_with_specific_class( $classes ) {
    // Add the class name that you want to exclude from lazy load.
    $classes[] = 'test-class';

    return $classes;
}

WP-CLI Support

In version 5.0 we’ve added full WP-CLI support for all plugin options and functionalities.

  • wp sg purge (url) – purges the entire cache or if URL is passed
  • wp sg memcached enable|disable – enables or disables Memcached
  • wp sg forcehttps enable|disable – enables or disables HTTPS for your site
  • wp sg optimize – enables or disables different optimization options for your site:
  • wp sg optimize html enable|disable – enables or disables HTML minification
  • wp sg optimize js enable|disable – enables or disables JS minification
  • wp sg optimize css enable|disable – enables or disables CSS minification
  • wp sg optimize combine-css enable|disable – enables or disables CSS combination
  • wp sg optimize combine-js enable|disable – enables or disables JS combination
  • wp sg optimize querystring enable|disable – enables or disables query strings removal
  • wp sg optimize emojis enable|disable – enables or disables stripping of the Emoji scripts
  • wp sg optimize images enable|disable – enables or disables New image optimization
  • wp sg optimize webp enable|disable – enables or disables WebP image optimization
  • wp sg optimize lazyload enable|disable – enables or disables Lazy loading of images
  • wp sg optimize gzip enable|disable – enables or disables Gzip compression for your site
  • wp sg optimize browsercache enable|disable – enables or disables Browser caching rules
  • wp sg optimize dynamic-cache enable|disable – enables or disables Dynamic caching rules
  • wp sg optimize web-fonts enable|disable – enables or disables Web Fonts Optimization
  • wp sg optimize fix_insecure_content enable|disable – enables or disables Insecure Content Fix
  • wp sg optimize database-optimization enable|disable – enables or disables the DB Optimization
  • wp sg optimize dns-prefetch enable|disable add|remove|urls – enables or disables the DNS Prefetching, add, remove or list urls.
  • wp sg optimize heartbeat-control enable|disable frontend|dashboard|post –frequency= enables or disables the Heartbeat control for a specific location and sets the frequency
  • wp sg status dynamic-cache|autoflush-cache|mobile-cache|html|js|js-async|css|combine-css|querystring|emojis|images|lazyload_images|lazyload_gravatars|lazyload_thumbnails|lazyload_responsive|lazyload_textwidgets|gzip|browser-caching|memcache|ssl|ssl-fix|web-fonts|combine-js|webp – returns optimization current status (enabled|disabled)
  • wp sg settings export – exports the current plugin settings
  • wp sg settings import –hash= – imports plugin settings and applies them

Requirements

In order to work correctly, this plugin requires that your server meets the following criteria:

  • SiteGround account
  • WordPress 4.7
  • PHP 5.5
  • If you’re not hosted with SiteGround this plugin WILL NOT WORK because it relies on a specific server configuration

Our plugin uses a cookie in order to function properly. It does not store personal data and is used solely for the needs of our caching system.

Screenshots

  • The Super Cacher Settings tab handles your Dynamic caching and Memcached. Here, you can exclude URls from the cache, test your site and purge the Dynamic caching manually.
  • In the Environment Optimization tab, you can force HTTPS for your site, switch PHP versions and enable Gzip and Browser Caching rules.
  • The Frontend Optimization tab allows you to Minify HTML, CSS & JS, as well as to remove query strings from your static resources and disable the Emoji support.
  • The Image Optimization tab allows you to optimize your Media Library images, aswell as adds Lazy Loading functionality for your site.
  • Multisite Only! In the Global Settings tab, you can configure all options that are global for your network.
  • Multisite Only! In the Per Site Defaults tab, you can configure how the new sites, added to your network will be setup.

Installation

Automatic Installation

  1. Go to Plugins -> Add New
  2. Search for “SG Optimizer”
  3. Click on the Install button under the SG Optimizer plugin
  4. Once the plugin is installed, click on the Activate plugin link

Manual Installation

  1. Login to the WordPress admin panel and go to Plugins -> Add New
  2. Select the ‘Upload’ menu
  3. Click the ‘Choose File’ button and point your browser to the sg-cachepress.zip file you’ve downloaded
  4. Click the ‘Install Now’ button
  5. Go to Plugins -> Installed Plugins and click the ‘Activate’ link under the WordPress SG Optimizer listing

Reviews

April 11, 2021
Never had so few issues with a caching/optimization tool before. Highly recommended.
April 3, 2021
The plugin is wonderful. Some of the settings are confusing, but every cache plugin is worse. 5 stars!
March 30, 2021
I don't understand what it did, but thank goodness I first backed up the site and database. After letting SG Optimizer clean the DB and then other recommended tasks, my posts no longer loaded but instead gave a page not found error. Restoring from backup fixed it back. I'm a long time Siteground customer and they are the best hosting company one could want. But, this plugin -- I wonder if they even know that it can break a simple vanilla site with lots of posts? Oh well.
Read all 421 reviews

Contributors & Developers

“SG Optimizer” is open source software. The following people have contributed to this plugin.

Contributors

“SG Optimizer” has been translated into 14 locales. Thank you to the translators for their contributions.

Translate “SG Optimizer” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

Version 5.7.20

  • Perform smart purge on the blog page when editing a post.
  • Remove jQuery Dependency from Lazy-load.

Version 5.7.19

  • Change loseless quality

Version 5.7.18

  • Improved REST API cache invalidation

Version 5.7.17

  • Improved WordPress 5.7 support

Version 5.7.16

  • Improved Contact Form 7 support
  • Improved Amelia booking support
  • Improved support for sites with custom wp-content dir

Version 5.7.15

  • Improved Contact Form 7 support

Version 5.7.14

  • Improved Vary:User-Agent handling

Version 5.7.13

  • Add settings import/export cli command
  • Exclude XML sitemaps from optimizations
  • Fix DNS Resolver fatal error for non existing hosts
  • Fix Cloudflare optimization for sites with custom wp-content dir
  • Improved Speed Test description for Webfonts optimization

Version 5.7.12

  • Improved Feed Cache Flush

Version 5.7.11

  • Improved CloudFlare Optimization
  • Add CloudFlare multisite support
  • Improved RevSlider support
  • Add uploads permissions check

Version 5.7.10

  • Revert to old HTML Minification

Version 5.7.9

  • Fixed bug with WooCommerce ajax

Version 5.7.8

  • Fix HTML Minification Refactoring

Version 5.7.7

  • HTML Minification Refactoring

Version 5.7.6

  • Improved cache flush, on automatic assets deletion

Version 5.7.5

  • Improved Flatsome UX Builder support
  • Improved Essential Addons for Elementor support
  • Updated readme

Version 5.7.4

  • Improved Leverage Browser Caching rules
  • Add exclude by post type
  • Improved Cloudflare cache purge

Version 5.7.3

  • Improved cache purge on Cludflare activation
  • Improved deauthentication of Cloudflare
  • Text improvements

Version 5.7.2

  • Fixed bug when external assets are not cleared properly
  • Improved detection of active Cloudflare
  • Text improvements

Version 5.7.1

  • Fixed bug with clearing cache from helper function

Version 5.7.0

  • Full-page Caching on CloudFlare
  • Web Fonts Optimization

Version 5.6.8

  • Improved SSL Replace patterns

Version 5.6.7

  • Improved JS & CSS Combination exclude list
  • Bumped JS Combination stop limit
  • Improved functionality to stop JS Combination if randomized names create endless combination files

Version 5.6.6

  • Improved JS Combination exclude list
  • Bumped JS Combination stop limit
  • Fixed typos

Version 5.6.5

  • Improved Elementor Pro 3.0 support

Version 5.6.4

  • Fix error in CSS Combinator

Version 5.6.3

  • Better WP 5.5 support
  • Improved log handling

Version 5.6.2

  • Improved JS Combination exclude list
  • Disable native WordPress lazyloading

Version 5.6.1

  • Second stage of Memcached improvements applied
  • Added WP-CLI control for heartbeat, dns-prefetching and db optimizations
  • Fixed non-critical notices while using PHP 7.3

Version 5.6.0

  • Added Heartbeat Control
  • Added Database Optimization
  • Added DNS Prefetching
  • Improved Browser Caching XML rules
  • Refactored Lazy Load
  • Deprecated Compatibility Checker & PHP Switcher
  • Improved Lazyload Videos for Classic Editor
  • Added functionality to stop JS Combination if randomized names create endless combination files

Version 5.5.8

  • Added proper AMP support
  • Added samesite parameter to the bypass cookie
  • Added support for Shortcodes Ultimate
  • Extended the sg purge wp-cli command to delete assets too
  • Improved support for Uncode Themes

Version 5.5.7

  • Improved Memcached Integration
  • Added protection for objects too big to be stored in Memcached
  • Improved JS and CSS Combination Exclude List
  • Improved Lazy Load functionality
  • Improved Image Optimization for sites using CDN

Version 5.5.6

  • Improved WP CLI commands
  • Extended Combine JavaScript Exclude list
  • Improved Beaver Builder Support
  • Revamped bypass cookie functionality
  • Improved Multisite Controls

Version 5.5.5

  • Improved Script Combinations Excluding Functionality
  • Improved Internationalisation
  • Improved Lazy Loading
  • Improved WooCommerce Support for 3rd Party Payment Gateways
  • Added Global JS exclude for Plugins with Known Issues
  • Added WP-Authorized-Net support
  • Added Facebook for WooCommerce support

Version 5.5.4

  • Fixed issue with CSS Combination causing problems with media specific stylesheets
  • Added defer attribute for the Combined JS files when JS Defer is enabled
  • Better support with sites using long domains (.blog, .marketing, etc.)
  • Fixed Memcached XSS security issues
  • Fixed CSS & JS Combination for sites with custom upload folders

Version 5.5.3

  • Fix ISE for Flatsome theme

Version 5.5.2

  • Better CSS Combination
  • Better Fonts Combination
  • Better concatenation of inline scripts
  • Improved WebP Quaity Slider
  • Updated readme.txt file
  • Added WP-CLI Commands: combine-js and webp
  • Better Polylang support

Version 5.5.1

  • Better Elementor support
  • Better Divi support
  • Better AMP support
  • Better sourcemapping removal

Version 5.5.0

  • New – Combine JavaScript Files
  • New – WebP quality control plus lossless option
  • New – What’s new and opportunities slider
  • Improved – better WPML support (mostly memcached)
  • Improved – better Elementor support
  • Improved – better Browser Caching rules for cPanel users

Version 5.4.6

  • Interface revamp for better accessability
  • Improved compatibility with page builders
  • Improved compatibility with latest Elementor
  • Added support for popular AMP plugins
  • Better WebP optiomization status reporting

Version 5.4.5

  • Improved elementor support
  • Improved flothemes support
  • Improved handling of @imports in combine css

Version 5.4.4

  • Improved transients handling
  • Added Jet Popup support

Version 5.4.3

  • Added Lazy loading functionality for iframes
  • Added Lazy loading functionality for videos

Version 5.4.2

  • Fixed bug with WebP image regeneration on image delete

Version 5.4.1

  • Added PHP 7.4 support for PHP Compatibility Checker
  • Improved WebP Conversion
  • Fixed bug with WebP image regeneration on image edit
  • Improved plugin localization

Version 5.4.0

  • Added WebP Support on All Accounts on Site Tools
  • Added Google PageSpeed Test
  • Improved Image Optimization Process
  • Improved SSL Certificate check

Version 5.3.10

  • Better PHP Version Management for Site Tools
  • NGINX Direct Delivery for Site Tools

Version 5.3.9

  • Improved check for SG Servers

Version 5.3.8

  • Fixed a bug when Memcached fails to purge when new WordPress version requiring a database update is released
  • Added alert and check if you’re running SG Optimizer on a host different than SiteGround
  • Improved compatibility with WooCommerce
  • Improved conditional styles combination
  • Improved image optimization process

Version 5.3.7

  • Added WooCommerce Square Payment & Braintree For WooCommerce Exclude by Default
  • Improved Google Fonts Optimization
  • Added Notice for Defer Render-Blocking Scripts Optimization
  • Added wp-cli commands for Google Fonts Optimization
  • Changed New Images Optimizer hook to wp_generate_attachment_metadata

Version 5.3.6

  • Improved Google Fonts loading with better caching
  • Improved Defer of render-blocking JS

Version 5.3.5

  • WordPress 5.3 Support Declared
  • Better Elementor Compatibility
  • Better Image Optimization Messaging
  • Better Google Fonts combination
  • Added PHP 7.4 support

Version 5.3.4

  • Improved Async load of JS files
  • Added Google Fonts Combination optimization
  • Moved lazyload script in footer
  • Improved CSS combination

Version 5.3.3

  • Improved browser cache handling upon plugin update
  • Added wp-cli commands for Dynamic Cache, Autoflush and Browser-Speciffic cache handling

Version 5.3.2

  • Fixed bug with https enforce for www websites
  • Improved JILT support

Version 5.3.1

  • Better SSL force to accommodate websites with WWW in the URL
  • Global exclusion of siteorigin-widget-icon-font-fontawesome from Combine CSS

Version 5.3.0

  • Refactoring of the Lazy Load functionality
  • Redesign of the Lazy Load screen
  • Improved WooCommerce product image Lazy Load
  • Gzip functionality update for Site Tools accounts
  • Browser caching functionality update for Site Tools accounts
  • Improved Browser caching functionality for cPanel accounts

Version 5.2.5

  • New Feature: Option to split caches per User Agent
  • New Feature: Option to disable lazy loading for mobile devices
  • Improved Memcached check

Version 5.2.4

  • Improved XML RCP checks compatibility

Version 5.2.3

  • Improved LazyLoad

Version 5.2.2

  • Improved Events Calendar Compatibility
  • Suppressed notices in the REST API in certain cases
  • Improved nonscript tag in LazyLoad

Version 5.2.1

  • Improved Cloudflare compatibility

Version 5.2.0

  • Exclude list Interface for JavaScript handlers
  • Exclude list Interface for CSS handlers
  • Exclude list Interface for HTML minification (URL like dynamic)
  • Exclude list interface for LazyLoading (Class)
  • Improved Thrive Architect support
  • Fixed notice when purging comment cache

Version 5.1.3

  • Improved Elementor support
  • Improved CSS optimization for inclusions without protocol
  • Excluded large PNGs from optimizations
  • Added better WP-CLI command documentation

Version 5.1.2

  • Added support for Recommended by SiteGround PHP Version
  • Improved LazyLoad Support for WooCommerce sites
  • Improved Image Optimization checks
  • Improved PHP Version switching checks
  • Added wp cli status command for checking optimization status
  • Fixed bug with Combine CSS

Version 5.1.1

  • Improved cache invalidation for combined styles
  • Cache purge from the admin bar now handles combined files too
  • Added filter to exclude images from Lazy Loading
  • Added filter to exclude pages from HTML Minification
  • Added Filter to query params from HTML Minification
  • Added PHP 7.3 support

Version 5.1.0

  • Added CSS Combination Functionality
  • Added Async Load of Render-Blocking JS
  • Added WooCommerce Support for LazyLoad
  • Added Filter to Exclude Styles from CSS Combination
  • Improved Lazy Load Functionality on Mobile Devices
  • Fixed Issue with WP Rocket’s .htaccess rules and GZIP
  • Fixed Issue with Query String Removal Script in the Admin Section
  • Fixed Compatibility Issues with 3rd Party Plugins and Lazy Load
  • Fixed Compatibility Issues with Woo PDF Catalog Plugin and HTML Minification
  • Improved Memcached Reliability
  • Improved Lazy Load for Responsive Images

Version 5.0.13

  • Modified HTML minification to keep comments
  • Interface Improvements
  • Better input validation and sanitation for PHP Version check
  • Improved security

Version 5.0.12

  • Better cache purge for multisite
  • Surpress dynamic cache notices for localhost sites

Version 5.0.11

  • Improved handling of third party plugins causing issues with the compatibility checker functionality
  • Optimized WP-CLI commands for better performance
  • Better notice handling for Multisite and conflicting plugins

Version 5.0.10

  • Fixed issue with Mythemeshop themes
  • Fixed issues with exclude URL on update
  • Fixed issues with exclude URL on update
  • Exclude Lazy Load from AMP pages
  • Exclude Lazy Load from Backend pages
  • Fixed WPML problems
  • Fixed Beaver Builder issues
  • Fixed Spanish translations
  • Fixed incompatibility with JCH Optimize

Version 5.0.9

  • Fixed woocommerce bugs
  • Improved memcached flush
  • Improved https force

Version 5.0.8

  • Better .htaccess handling when disabling and enabling Browser Cache and Gzip
  • Improved image optimization handling
  • Added option to stop the image optimization and resume it later
  • Fixed bug with memcached notifications
  • Fixed bug with conflicting plugin notices for non-admins
  • Fixed bug when user accesses their site through IP/~cPaneluser
  • Fixed bug with labels for HTML, CSS & JS Minification
  • SEO Improvements in the Lazy Load functionality

Version 5.0.7

  • Fixed bug with notifications removal
  • Fixed bug with modifying wrong .htaccess file for installations in subdirectory
  • Flush redux cache when updating to new version
  • Improved check for existing SSL rules in your .htaccess file
  • Added check and removal of duplicate Gzip rules in your .htaccess file
  • Added check and removal of duplicate Browser caching rules in your .htaccess file

Version 5.0.6

  • Memcache issues fixed. Unique WP_CACHE_KEY_SALT is generated each time you enable it on your site.
  • Better status update handling
  • Added option to start checks even if the default WP Cron is disabled (in case you use real cronjob)

Version 5.0.5

  • Fixed Compatibility Checker progress issues.
  • Fixed images optimization endless loops.
  • Changed php version regex to handle rules from other plugins.

Version 5.0.4

  • Fixed CSS minification issues.
  • Add option to re-optimize images.
  • Allow users to hide notices.

Version 5.0.0

  • Complete plugin refactoring
  • Frontend optimiztions added
  • Environment optimizations added
  • Images Optimizatoins adder
  • Full WP-CLI Support
  • Better Multisite Support
  • Better Interface

Version 4.0.7

  • Fixed bug in the force SSL functionality in certain cases for MS
  • Added information about the cookie our plugin uses in the readme file

Version 4.0.6

  • Bug fixes
  • Better https enforcement in MS environment

Version 4.0.5

  • Removed stopping of WP Rocket cache

Version 4.0.4

  • Minor bug fixes

Version 4.0.3

  • Switching recommended PHP Version to 7.1

Version 4.0.2

  • WPML and Memcache / Memcached bug fix

Version 4.0.1

  • Minor bug fixes
  • UK locale issue fixed

Version 4.0.0

  • Added proper Multisite support
  • Quick optimizations – Gzip and Browser cache config settings for the Network Admin
  • Network admin can purge the cache per site
  • Network admin can disallow Cache and HTTPS configuration pages per site
  • WPML support when Memcached is enabled
  • Cache is being purged per site and not for the entire network
  • Multiple performance & interface improvements
  • Security fixes against, additional access checks introduced
  • Fixed minor cosmetic errors in the interface

Version 3.3.3

  • Fixed minor interface issues

Version 3.3.2

  • Fixed bug with disabling the Force HTTPS option

Version 3.3.1

  • Fixed cache purge issue when CloudFlare is enabled
  • Added logging of failed attempts in XMLRPC API.

Version 3.3.0

  • Improved public purge function for theme and plugin developers
  • Added WP-CLI command for cache purge – wp sg purge

Version 3.2.4

  • Updated Memcache.tpl
  • Fixed a link in the PHP Check interface

Version 3.2.3

  • Improved WP-CLI compatibility

Version 3.2.1

  • Improved cron fallback, added error message if the WP CRON is disabled

Version 3.2.0

  • Adding PHP 7.0 Compatibility check & PHP Version switch

Version 3.0.5

  • Improved Certficiate check

Version 3.0.4

  • Fixed bug with unwrittable .htaccess

Version 3.0.3

  • Fixed bug in adding CSS files

Version 3.0.2

  • User-agent added to the SSL availability check

Version 3.0.1

  • PHP Compatibility fixes

Version 3.0.0

  • Plugin renamed to SG Optimizer
  • Interface split into multiple screens
  • HTTPS Force functionality added which will reconfigure WordPress, make an .htaccess redirect to force all the traffic through HTTPS and fixes any potential insecure content issues
  • Plugin prepared for PHP version compatibility checker and changer tool

Version 2.3.11

  • Added public purge function
  • Memcached bug fixes

Version 2.3.10

  • Improved Memcached performance
  • Memcached bug fixes

Version 2.3.9

  • Improved WordPress 4.6 compatibilitty

Version 2.3.8

  • Improved compatibility with SiteGround Staging System

Version 2.3.7

  • Fixed PHP warnings in Object Cache classes

Version 2.3.6

  • Minor URL handling bug fixes

Version 2.3.5

  • Improved cache testing URL detection

Version 2.3.4

  • CSS Bug fixes

Version 2.3.3

  • Improved Memcache work
  • Interface improvements
  • Bug fixes

Version 2.3.2

  • Fixed bug with Memcached cache purge

Version 2.3.1

  • Interface improventes
  • Internationalization support added
  • Spanish translation added by SiteGround.es
  • Bulgarian translation added

Version 2.3.0

  • Memcached support added
  • Better PHP7 compatibility

Version 2.2.11

  • Improved compatibility with WP Rocket
  • Bug fixes

Version 2.2.10

  • Revamped notices work
  • Bug fixes

Version 2.2.9

  • Bug fixes

Version 2.2.8

  • Bug fixing and improved notification behaviour
  • Fixed issues with MS installations

Version 2.2.7

  • Added testing box and notification if Dynamic Cache is not enabled in cPanel

Version 2.2.6

  • Fixed bug with Memcached causing issues after WP Database update

Version 2.2.5

  • Minor system improvements

Version 2.2.4

  • Minor system improvements

Version 2.2.3

  • Admin bar link visible only for admin users

Version 2.2.2

  • Minor bug fixes

Version 2.2.1

  • Added Purge SG Cache button
  • Redesigned mobile-friendly interface

Version 2.2.0

  • Added NGINX support

Version 2.1.7

  • Fixed plugin activation bug

Version 2.1.6

  • The purge button will now clear the Static cache even if Dynamic cache is not enabled
  • Better and more clear button labeling

Version 2.1.5

  • Better plugin activation and added to the wordpress.org repo

Version 2.1.2

  • Fixed bug that prevents you from enabling Memcached if using a wildcard SSL Certificate

Version 2.1.1

  • Cache will flush when scheduled posts become live

Version 2.1.0

  • Cache will be purged if WordPress autoupdates

Version 2.0.3

  • Minor bug fixes

Version 2.0.2

  • 3.8 support added

Version 2.0.1

  • Interface improvements
  • Minor bug fixes

Version 2.0

  • New interface
  • Minor bug fixes
  • Settings and Purge pages combined into one

Version 1.2.3

  • Minor bug fixes
  • SiteGround Memcached support added
  • URL Exclude from caching list added

1.0

  • Plugin created.