How do I speed up my site?

Basic performance improvement tips

Here are some suggestions, assuming you’re running the latest-released version of Zen Cart:

Turn off Category Counts, especially if you have a large number of categories.

Go to Admin > Config > My Store

- Show Category Counts = false  
- Show Category Counts-Admin = false  

(this second one is for admin-area only when editing catalog)  

Disable the Manufacturers sidebox if you don’t need it.

Go to Admin > Tools > Layout Boxes Controller. Find the sideboxes/manufacturers.php entry, and turn it “OFF”

Disable Products Viewed

NEW! In releases prior to 1.5.7, the Zen Cart “products viewed” feature can cause performance degradation on busy sites.

Disable this feature by editing includes/extra_datafiles/products_viewed_counter.php and setting LEGACY_PRODUCTS_VIEWED_COUNTER to off.

NOTE: This change is only relevant for Zen Cart 1.5.6c and below.

Ensure your images are optimized for your site.

Specifically, use small images for thumbnails, slightly larger for product pages (_MED images), and large detailed images for “click to enlarge” (_LRG) images.

See also these articles:

Disable unused attribute settings

In Admin > Configuration > Attribute Settings, there are a few switches which, if turned off, will reduce the number of queries used to calculate and display product information:

  • Enable Downloads – If you’re not doing downloads on your site, turn this off.

  • Enable Price Factor – If you’re not using price-by-attributes support, turn this off to stop those calculations and the related queries

  • Enable Qty Price Discount – If you’re not doing quantity discounts, turn this off

  • Enable Attribute Images – If you’re not adding images to your attributes, turn this off

  • Enable Text Pricing by word or letter – If you’re not offering text attributes which calculate per-word or per-letter, turn this off.

  • In the Attributes Controller, when you are adding an attribute to a product, set “Apply Discounts Used by Product Special/Sale: No” (assuming that the options don’t have cost associated with them); this will heavily reduce your parse times.

Home Page performance

If it’s primarily your home page (ie: the storefront) that’s slow, you might consider turning off content-boxes related to specials and featured products, as they generate a lot of extra queries to extract special pricing information.

Don’t overload categories

If your categories contain a LOT of products, consider dividing them into subcategories for improved efficiency not only in performance but also in helping the customer find what they’re looking for.

If you really can’t make your categories more lean, consider turning off the previous/next buttons on the Admin > Configuration > Product Info page, or at least set the prev/next sort mode to NOT include the product name (ie: pick product Model or Price instead).

Further, when you have a LOT of products in large numbers of subcategories, you may find significant improvement by going to Admin > Configuration > Index Listing and turning off the first 8 settings there (setting them to 0). Adjust as necessary, depending on what content you wish to display.

Reduce New Products window

The “new products” selection window is by default set to “Forever”. The configuration setting Admin > Configuration > Maximum Values > New Product Listing - Limited to … tells the system how far back to look when creating a list of new products. Setting the new product timeframe to a smaller window will make the display of “new products” (in sideboxes and center content-boxes) run much faster, and thus improve speed.

Disable Also Purchased Products

The Also Purchased Products display on the product info page is an expensive query when the orders table is large. Try setting Also Purchased Products Columns per Row to 0 to disable this feature, and see if that noticeably increases the speed of your product pages.

Consider GZip Compression

In some cases, enabling gzip compression can be helpful for people experiencing slowness loading a site over slow internet connections:
Go to Admin > Config > GZip Compression and set Enable GZip Compression = 1

Ensure Images Exist

Ensure that your stylesheets don’t contain any references to image files that don’t exist on your server. (You can use the Website Optimizer Speed Test site to quickly find missing images on specific pages.)

Remove Excess debug/log files

If your site has generated a large number of debug log files, it can cause some degree of slowdown. (This is worsened if you’re using v1.5.0 or older, where those log files are stored on the /cache/ folder. Having a lot of non-caching files in the /cache/ folder can lead to serious slowdowns on all versions.)

You will want to download a copy of those log files to your PC, using your FTP tool. Then analyze them to see what errors might be occurring on your site on a regular basis.
Then you can purge those logs files by using the Admin > Tools > Store Manager Purge log files menu option.

Use MySQL slow query log

Use the MySQL slow query log feature to identify poorly-performing database queries.

You may need to talk to your hosting company to enable this feature and to evaluate the logs generated. Set it with a low threshold so that you can see where the database is spending its time.

Do you have any plugins enabled that add their own tables? Maybe they’re poorly tuned tables.

Or have you written any custom code or use any addons which run queries that attempt to join tables on unindexed database columns?

Review other settings that can cause slowdowns

In addition to the settings mentioned above, additional settings you may wish to change to improve performance are as follows:

  • Admin > Configuration > Maximum Values > Manufacturers List - Verify Product Exist
  • Admin > Configuration > Sessions > IP to Host Conversion Status

Each of these settings has its own documentation.

Consider additional server tuning

Consider these Webserver Tuning Tips.

Check for duplicate jQuery libraries

In case you haven’t already considered this, make sure you’re not loading more than one copy of jQuery on your site.

Many plugins come with their own copy of jquery.js or jquery-min.js (or some numbered version of the same pattern), and you shouldn’t be loading them all; only load one, and that should be the latest version.




Still have questions? Use the Search box in the upper right, or try the full list of FAQs. If you can't find it there, head over to the Zen Cart support forum and ask there in the appropriate subforum. In your post, please include your Zen Cart and PHP versions, and a link to your site.

Is there an error or omission on this page? Please post to General Questions on the support forum. Or, if you'd like to open a pull request, just review the guidelines and get started. You can even PR right here.
Last modified June 19, 2022 by Scott C Wilson (edb9b78).