GoZen Host runs LiteSpeed Web Server on all shared and WordPress hosting plans. This means you have access to LiteSpeed Cache (LSCache), the fastest WordPress caching solution available. Unlike plugin-only caches (WP Super Cache, W3 Total Cache), LSCache operates at the server level and can serve cached pages without touching PHP at all.

Install the Plugin

  1. In WordPress, go to PluginsAdd New
  2. Search for LiteSpeed Cache
  3. Install and activate the plugin by LiteSpeed Technologies

The plugin is the control interface. The actual caching engine is LiteSpeed Web Server, which is already running on your GoZen account.

The defaults are decent, but these changes will get you the best results on GoZen’s infrastructure.

Cache Settings

Go to LiteSpeed CacheCache in the WordPress sidebar.

SettingValueWhy
Enable CacheONCore feature
Cache Logged-in UsersOFFUnless you have a membership site
Cache CommentersOFFPrevents stale comment displays
Cache REST APIONSpeeds up Gutenberg and REST-heavy plugins
Cache Login PageONReduces brute force overhead
Cache favicon.icoONOne fewer PHP request
Cache PHP ResourcesONCaches dynamically-generated CSS/JS
TTL (Time To Live)604800 (7 days)Longer cache = fewer regenerations. Purge manually when needed

Page Optimization

Go to LiteSpeed CachePage Optimization.

SettingValueWhy
CSS MinifyONRemoves whitespace from CSS
CSS CombineON (test first)Merges multiple CSS files. Disable if layout breaks
JS MinifyONRemoves whitespace from JavaScript
JS CombineOFFOften causes issues with plugins. Enable and test
HTML MinifyONStrips unnecessary whitespace from HTML
Load CSS AsynchronouslyONPrevents render-blocking CSS
Load JS DeferredONLoads scripts after page render
Remove Query StringsONImproves CDN cacheability

Image Optimization

Go to LiteSpeed CacheImage Optimization.

  1. Click Request Image Optimization to send your images to LiteSpeed’s optimization service (free)
  2. Enable WebP Replacement to serve WebP images to supported browsers
  3. Set Lazy Load Images to ON

Image optimization runs through LiteSpeed’s external API. It processes images in batches and replaces them with optimized versions automatically.

Object Cache

Go to LiteSpeed CacheCacheObject.

SettingValueWhy
Object CacheOFF (shared hosting)Redis/Memcached is not available on shared hosting by default

On Managed VPS plans, if Redis is available, enable Object Cache and set the method to Redis. This caches database queries in memory, dramatically speeding up dynamic pages.

Purge the Cache

After making changes to your site (new posts, theme updates, plugin changes), purge the cache:

  • Quick purge: Click the LiteSpeed Cache icon in the WordPress admin bar → Purge All
  • Selective purge: Go to LiteSpeed CacheToolboxPurge to clear specific pages or categories

The cache rebuilds automatically on the next visit.

Testing Your Cache

Verify caching is working:

  1. Open your site in an incognito/private browser window
  2. Open DevTools (F12) → Network tab
  3. Load a page and click on the main HTML request
  4. Check the response headers for:
  x-litespeed-cache: hit,litemage
  

If you see hit - the page was served from cache. If you see miss - the page was generated fresh (it will be cached for next time).

You can also check from the command line:

  curl -I https://yourdomain.com 2>&1 | grep x-litespeed
  

Common Issues

ProblemFix
Pages not caching (always shows “miss”)Check that the page isn’t excluded in CacheExcludes. Logged-in pages aren’t cached by default
CSS/JS broken after enabling optimizationDisable CSS Combine or JS Combine. Test one at a time
Old content showing after updatesPurge all cache. Check if you have a CDN that also needs purging
WooCommerce cart/checkout issuesGo to CacheExcludes and add /cart and /checkout to the Do Not Cache URIs
Cache not working at allVerify LiteSpeed is your web server (it is on GoZen shared/WordPress hosting). The plugin doesn’t work on Apache or Nginx without OpenLiteSpeed
“REST API failed” error in pluginCheck if a security plugin is blocking REST API requests

LiteSpeed Cache vs Other Caching Plugins

Don’t run multiple caching plugins. If you’re on GoZen Host, use LiteSpeed Cache. Remove:

  • WP Super Cache
  • W3 Total Cache
  • WP Fastest Cache
  • WP Rocket (it works but duplicates what LSCache already does at a lower level)

LiteSpeed Cache is the only plugin that can use the server-level cache directly. Everything else is a PHP-level workaround.

What to Do Next

Last updated 07 Apr 2026, 00:00 +0200. history

Was this page helpful?