

Dashboard: cache hit ratio, real time-to-first-byte, Core Web Vitals, static file count, mirror freshness, and the live Stealth Score at a glance.
Nexora Engine transforms WordPress into a modern infrastructure platform without requiring a separate Node.js server or CDN configuration. It delivers three core capabilities:
Speed Infrastructure
Pre-rendered HTML snapshots served from advanced-cache.php before WordPress boots, achieving 22ms TTFB on any shared host (Apache, Nginx, LiteSpeed, IIS). Zero PHP execution on cache hits.
Ghost Protocol
Strips every WordPress fingerprint from HTML, headers, and JavaScript. Generator meta tags, REST API discovery links, window.wp, and X-Powered-By: PHP are all removed or rewritten. Wappalyzer reports Nginx, not WordPress.
Intelligent Automation
Content changes trigger selective snapshot regeneration, so only affected pages rebuild, with a 30-second debounce to coalesce bulk edits. Asset references are validated before serving.
There is no page limit, no time limit, and no feature that stops working. Every
page on your site can be served statically on the free version, for as long as
you use it.
This plugin’s static-delivery features run entirely on your own server. To build the static cache it makes requests to your own website (loopback requests to your own pages) so it can capture their rendered HTML. Those are requests to your site, not to any third party.
Beyond that, this plugin contacts outside servers in the following cases, and only these:
1. Freemius: licensing and updates
Freemius provides the licence check, plugin update channel, and (if you choose to purchase) checkout.
The plugin starts in anonymous mode: no account is created, no opt-in prompt is shown, and no diagnostic data is sent. Every feature of the free version works in this state and you never have to connect anything.
Data is only shared if you choose to act:
Contact with Freemius happens when you activate a licence, when the plugin checks for an update to a licensed copy, and when you open the licensing screens.
Service provided by Freemius, Inc. Terms of service: https://freemius.com/terms/ Privacy policy: https://freemius.com/privacy/
2. Broken-link checking: the sites you link to
When you run a link scan, the plugin sends an HTTP HEAD request to each external URL found in your own posts and pages, to see whether the link still resolves. Only the URL is requested; no data about you or your visitors is transmitted. The destinations are entirely determined by the links in your content, this plugin does not choose them, and the scan only runs when you start it.
3. Revalidation webhook (optional, off by default)
If, and only if, you enter a webhook URL in the plugin’s settings (for example to tell a headless front end that a page changed), the plugin sends a POST request to that URL when a post is updated. It contains the changed post’s ID and URL plus a signature generated from a secret you supply. Nothing is sent until you configure this URL, and the destination is entirely your choice; this plugin does not provide or control it.
This plugin does not phone home, send analytics, or transmit any data to Auralogics Labs servers.
Note: features that integrate with Google Search Console or with CDN providers (Cloudflare, BunnyCDN) are not part of this plugin. They are not included in this download and no code for them ships here.
Nexora Engine is fully open. The admin interface is a React + TypeScript application; the human-readable source lives in the frontend/ directory that ships inside the plugin, and it is compiled with Vite to assets/dist/nexora-engine.js. Nothing is obfuscated or minified beyond a standard production build.
The complete, unminified source, including the build tooling and instructions, is maintained publicly at:
https://github.com/auralogicslabs/nexora-engine
To build the compiled assets from source:
npm install: install the build dependencies.npm run build: compile frontend/ to assets/dist/nexora-engine.js with Vite.The PHP is shipped as-is (no build step) and is directly readable in the includes/, app/, and admin/ directories.