Skip to content

Core Changelog for Scalability Pro

Showing core changelog - click here to view beta changelog instead

Contributors: dhilditch
Donate link: https://www.wpintense.com/
Tags: speed, performance
Requires at least: 4.7
Tested up to: 5.8.2
Stable tag: 5.07
Requires PHP: 7.0 License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Speeds up slow SQL queries and includes various other performance tweaks to help your site scale to any size.

Description

Speeds up slow SQL queries and includes various other performance tweaks to help your site scale to any size.

Frequently Asked Questions

Is this PHP 8 compatible?

Yes, and it's MySQL 8 and MariaDB compatible too.

Screenshots

Plugin README Parser: Could not find screenshot-1 image file

Changelog

5.08 (24th January 2023)

  • Fixed JS bug affecting the new 'Ajaxify term search' option. The search was working, but the wp-admin JS was replacing the option list with the original list. Now searching for terms in huge term lists is very fast.

5.07 (6th November 2022)

  • Fixed bug with defer term counting which was preventing new menu items being added to brand new menus

5.06 (5th November 2022)

  • Added option to track creation of wp_scalability_pro_cache table rather than checking information_schema.tables every page load

5.05 (4th November 2022)

  • Previous fix confirmed - updated settings page to instruct users to add define('SPRO_FIX_WOO_ONBOARDING', true); to wp-config.php if they wish to test this option

5.04 (4th November 2022)

  • Replaced new onboarding option temporarily with define('SPRO_FIX_WOO_ONBOARDING', false);
    • change this to true in your wp-config.php if you wish to try it, we're seeing memory issues in multisite for some reason

5.03 (4th November 2022)

  • Added manual garbage collection to clear stack trace variable used to check query origin

5.02 (4th November 2022)

  • Added BETA option SPRO_REDUCE_IMAGE_SIZES
    • this reduces how many image sizes you import
    • to try it, please add the following to your wp-config.php file: define('SPRO_REDUCE_IMAGE_SIZES', true);

5.01 (4th November 2022)

  • Fix for slow WooCommerce onboarding code
    • this eliminates slow code that relies on wp_cache.
    • wp_cache gets wiped whenever products get edited, added, deleted.
    • That means, this should massively speed up imports.
    • Related article: https://www.wpintense.com/2022/11/04/speeding-up-woocommerce-7/

5.00 (20th October 2022)

  • Further upgrade for Remove Sort Order - it now defaults to only removing sort order from the Product Query since typically you want the latest posts to arrive
    • to override this, if you wish, please copy the define('SPRO_REMOVE_SORT_ORDER_POST_TYPES', array('product', array('product', 'product_variation'))); from the defines.php file to your wp-config.php file and add extra post types to the array as you wish
  • Fixed broken index count - index was being created, but was not being counted because of UNIQUE constraint on wp_options (option_name)

4.99 (19th October 2022)

  • Added new feature from @ifrountas request to ajaxify the attributes/taxonomies on post.php and post-new.php
    • this means if you have 30,000 terms in your taxonomies (e.g. authors, artists) then edit your posts will no longer be slowed down by this unwieldy select box

4.98 (19th October 2022)

  • Added update for new creations of options index to make it unique on options_name (SSS will also fix this as it's the plugin that requires it)

4.97 (18th October 2022)

  • Fix for Remove Sort Order so it doesn't affect wp-admin stuff, orders, products etc

4.96 (13th October 2022)

  • Added new semi-permanent cache for months and other cache from VIP code - ugosprint found when running imports, the regular WP cache is constantly being flushed so updating orders was taking 30 seconds as a result

4.95 (13th October 2022)

  • Fixed override for removing pagination on back-end edit.php - the options object was not checked properly
  • Added permanent override to remove unneeded DISTINCT which was causing table scans on posts_clauses - if LIMIT = 0, 1 or LIMIT = 1 then remove DISTINCT since it's not required and will cause a table scan - this is applied across all $wpdb queries
  • 2 new indexes on WP All Import.pmxi_posts which speeds up large imports quite a bit
  • Fixed the wp_posts.post_title index - this was why index counts were sometimes wrong on some setups and it kept telling you there was one more index to create
  • New index on wp_actionscheduler_actions - I've been seeing a LOT of slow activity on this newish table once stores get larger. Speeds up CRON in particular and reduces background load on the server.

4.94 (12th October 2022)

  • Upgrade and fix for defer term counts - speeds up imports for all post types, not just products, product import speed also boosted with this upgraded technique

4.93 (5th October 2022)

  • Added override for remove pagination on front-end if post_type empty or post_type = 'course' for compatibility with LifterLMS dashboard which expects the rowcounts and bails infinitely if the rowcounts are not there.

4.92 (3rd October 2022)

  • Finally found the real issue - there was an uncommitted change in SSS to overrule Spro sort order and there was an incorrect rule to only remove sort order for products, and the check for main query had been removed. All fixed.

4.91 (3rd October 2022)

  • Final hotfix update to fix the 'remove sort order' option. Was removing relevancy and also was not respecting the actual option setting.

4.89 (3rd October 2022)

  • Further update to remove redundant removal of sort order, now just rely on clauses filter

4.88 (3rd October 2022)

  • Minor update for priority of code to remove sort order to move it slightly earlier to ensure the SSS RELEVANCE order runs after it

4.87 (29th September 2022)

  • Fixed Remove Sort Order option - it was not correctly removing the default sort order from the products archive. It should only remove the sort order if there is no URL orderby parameter to override the default.

4.86 (14th September 2022)

  • Fixed error on settings page related to profiling table (profiling table removed, there will be an integration with query monitor in near future)
  • Added new option for SQL_CALC_ROWS on edit.php which can massively help speed up those pages for users with 10000s of posts/products/pages/cpts

4.85 (11th August 2022)

  • Fixed warnings that were appearing relating to new options to cache best-selling and other 2 shortcodes

4.84 (12th July 2022)

  • Added new index on wp_posts (post_title) - discovered this is required for Smart Coupons to stay scalable on large websites. Covered in this article: https://www.wpintense.com/2022/07/07/how-to-use-query-monitor-to-analyse-wordpress-performance-problems/
  • Fixed bug which was constantly showing that 1 more index is required to be created if you don't have WP All Import installed (we add 5 indexes for WPAI)

4.83 (7th June 2022)

  • Added optimisation for sites with lots of media files - two expensive queries that occur on every page load of wp-admin are now cached for 1 day. These queries just fetch the month/year for available media files. On client site with 300,000 products and related media, this eliminates 10s from wp-admin.
  • Added optimisation for WooCommerce onboarding where they continuously check for existence of something in the database, but for some reason they sort the results. I removed the sort operation to make this return instantly, no need for caching. On foundthru, this eliminates 70s from wp-admin.
  • Added optimisation for bulk editing items - now defer term counting is switched off for bulk editing - may potentially add further optimisations here - e.g. to queue up actions added to save_post such as third-party server based stuff like CRM, email, updating stock on Amazon etc

4.82 (23rd May 2022)

  • Improved Optimise Group BY option so that it applies far more often and changes the query to SELECT DISTINCT instead of select X, ...., GROUP BY posts.ID

4.81 (4th March 2022)

  • Removed error logging from 4.80
  • Improved code surrounding detecting custom sort order to bypass this rule - this is to allow users to choose a sort order in the shop archive (e.g. sort by price) and it will work always for all themes

4.80 (4th March 2022)

  • Remove sort order now fully restricted to 'products' to avoid showing articles in the wrong order - this depends on your database config whether this would have been an issue. If a sort is added to the URL, sorting will operate as normal.

4.79 (23rd February 2022)

  • Further fix for 'remove sort order' option to ensure it doesn't affect admin pages

4.78 (11th February 2022)

  • Fixed warning that was appearing on super speedy search results for scalability pro

4.77 (28th January 2022)

  • Fixed the 'remove sort order' option - it was previously overruling some pages that it shouldn't - it definitely only affects the main query on the front end now
  • Sort option also disabled if ?orderby parameter in the URL
  • Sort option confirmed compatible with super speedy search RELEVANCE scoring
  • Fixed multisite compatibility for creating indexes

4.76 (17th December 2021)

  • Altered the update checker to use Bitbucket instead of my own server

4.75 (17th December 2021)

  • Upgraded the update checker - checked the two errors that I fixed earlier are fixed in the update.

4.74 (17th December 2021)

  • Hardened plugin update checker - an error was occurring if the wpintense json file was not available

4.73 (15th December 2021)

  • Added 3 new indexes for the new way WP All Import performs image lookups

4.72 (10th November 2021)

  • Merged old items into core

4.71 (4th November 2021)

  • Added scalability fix for order admin issue caused by the Order Delivery Date plugin

4.70 (2nd November 2021)

  • Added index to wp_options on name - found in perf analysis that this is actually a very frequent SQL pattern and when > 2000 options exist it starts to get noticable
  • Added index to wp_comments to assist with admin area where comment counts are counted by comment type
  • Added count users cache for wp-admin order admin speed boost - it's only used to display a dropdown in the list orders screen (and possibly other screens)
  • Refactored how indexes are created - paves the way for selective indexing in future

4.69 (22nd October 2021)

  • Hardened code to avoid fatal warning at end of overnight cron job if WooCommerce not installed - checks for existence of wc_recount_all_terms - was not affecting anything other than creating an error in debug.log

4.68 (9th September 2021)

  • Added optimisation for WCFM Multivendor marketplace - the query they have to generate the STORE filter is not scalable, made scalable with this update
  • Added 2 indexes to support improved query for WCLOVERS WCFM Multivendor Marketplace plugin - wp_usermeta.wpi_wclovers_wcfm_marketplace_usermeta and wp_users.wpi_wclovers_wcfm_marketplace_users - even just 6000 entries in wp_usermeta (10 users) is enough to add 0.5 seconds to page load, but with this index + query alteration the same query is 0.003 seconds

4.67 (3rd September 2021)

  • Added settings control over the option to remove OR post_status = 'private' to front-end queries. Doing this can speed up WP_Query in some cases. Using this option will stop private items displaying on your front-end.

4.66 (31st August 2021)

  • Altered code that removes check for private posts to never run on wp-admin pages

4.65 (30th July 2021)

  • Fixed bug that occured with 'CHANGE TAX TO EXISTS' when no tax exists

4.64 (12th May 2021)

  • Minor PHP notice warning removal

4.63 (12th May 2021)

  • Import speed boosted significantly - https://www.wpintense.com/2021/05/12/speeding-up-wp-all-import-imports-using-scalability-pro/
  • Improved Defer Term Count code to speed up imports
  • Added wc_lookup_sku index for product lookups against the sku (used by more than just imports, so speed boosts elsewhere too)
  • Added wpallimport_sku to speed up imports when checking to see if item already inserted
  • Added wpallimport_guid to speed up imports

4.62 (30th September 2020)

  • Added new WPI Settings page where users can enter their license key to enable plugin updates

4.61 (22nd June 2020)

  • Added multisite compatibility

4.60 Beta (1st May 2020)

  • Prevent query alterations for cron and ajax where the order of results may actually matter for functionality
  • Improved removal of GROUP BY when group by not needed - gives speed boost in some cases

4.59 Beta (16th April 2020)

  • Changed mechanism for the 'WHERE NOT EXISTS' option to make it work with all taxonomies and multiple taxonomies (previously was disabled and when enabled it only handled 1 taxonomy) - this optimisation helps in many cases but not all - you'll need to test it to check with your data config

4.58 (31st March 2020)

  • Added new index on wp_posts on just the guid column. Some themes grab posts directly using SQL against wp_posts and just use the guid. Typically this is when they're grabbing images. They shouldn't do it that way but some do.

4.57 (27th August 2019)

  • Fixed bug related to 'removing woocommerce ajax variations count' which improves performance of pages with many variations
    • bug was related to items which didn't have all variations created. Fix was to return at least 1 of the variations which seems to fix the Woo JS code so that it will correctly use Ajax to fetch prices.

4.56 (16th May 2019)

  • Updated code to prevent 'sort order suppression' and 'pagination suppression' from running on admin pages

4.55 (16th May 2019)

  • Re-added experimental EXISTS option for those users who have already set it and are successfully using it. Full fix coming soon to re-add it to options page.

4.54 (8th May 2019)

  • Further hotfix for sitemap index

4.53 (8th May 2019)

  • Fixed sitemap index in cases where somehow the keys were > 1000 characters

4.52 (8th May 2019)

  • Removed the experimental EXISTS feature as it was causing errors in many cases

4.51 (6th May 2019)

  • Altered the plugin update checker to use the latest version and avoid warning message.

4.50 (12th April 2019)

  • WHERE EXISTS experimental option now fixed - if all 3 wp_query options set, dogs category on foundthru is 0.0009s

4.49 (1st April 2019)

  • Swapped out use of dbDelta to use generic CREATE statement instead since it seems there is a bug inside WordPress core - https://wordpress.stackexchange.com/questions/141971/why-does-dbdelta-not-catch-mysqlerrors/141984
  • Removed the .js file from front-end as it's not yet needed

4.48 (28th March 2019)

  • Bumped version number to help customer

4.47 (28th March 2019)

  • Removed row-level caching from WooCommerce->Orders (needs bugs fixed)
  • Added caching table for better performance than using transients

4.46 (4th March 2019)

  • Added caching table for use by wp-admin views
  • Added row-level caching to WooCommerce -> Orders
  • Added row-level caching to wp-admin -> Products
  • Removed warnings & notices

4.45 (11th February 2019)

  • V minor speed boost when checking for queries related to group BY (mostly around sitemaps)

4.44 (4th February 2019)

  • Added new index for XML sitemaps - optimises BWP Google XML Sitemaps and Yoast SEO XML sitemap functionality
  • Added new filter to optimise paged query for BWP Google XML Sitemaps
  • Added new filter to optimise main query for Yoast SEO XML sitemap functionality

4.43 (10th January 2019)

  • Removed warning caused by 'beta' check for updates for those who were not on beta program

4.42 (2nd December 2018)

  • Fixed issue with spotting indexes that were created using MySQL 8

4.41 (17th September 2018)

  • Fixed product's disappearing on some themes when 'no pagination' option set

4.37 (11th January 2018)

  • Improved product listing page speed

4.36 (11th January 2018)

  • Fixed 2 errors when object is not defined - was preventing correct operation of 'duplicate product' link (for example)

4.35

  • Improved experimental left join
  • Improved admin pages and documentation

4.34

  • Fixed broken 'sort order' option
  • Made experimental LEFT JOIN optimisation (to WHERE EXISTS) far more stable

Join our Discord community and read the rules for a 20% discount coupon.