From the Knowledgebase

Setting up fake worker failed Error on update

This error comes up if there is a caching and/or minifying plugin on the site that has cached the previous version of the plugin scripts and now does not match with the updated plugin. To rectify this error, you need to clear the cache and allow the site to reload the scripts.

Using WP Rocket, disable the option for "Remove Query Strings from static resources" (present in older versions of plugin):

W3 Total Cache has a similar setting that can be found here: W3 Total Cache > Browser Cache > Remove Query Strings From Static Resources. That should be unchecked when using that particular caching plugin.

Using Autoptimize: disable the option for "Aggregate JS-files":

For other caching plugins, first disable any options for aggregate/inline JS or other static resources,  flush the cache, and do a hard reload the browser. The error should now be gone.

If it persists, exclude the following paths from your site's cache and/or minifying plugin.

Free version paths:
/wp-content/plugins/pdf-embedder/js/all-pdfemb-basic-4.6.4.min.js,
/wp-content/plugins/pdf-embedder/js/pdfjs/pdf-4.6.4.min.js, and
/wp-content/plugins/pdf-embedder/js/pdfjs/pdf-4.6.4.worker.min.js

Premium version paths:
/wp-content/plugins/PDFEmbedder-premium/js/all-pdfemb-premium-5.1.4.min.js
/wp-content/plugins/PDFEmbedder-premium/js/pdfjs/pdf-5.1.4.min.js
/wp-content/plugins/PDFEmbedder-premium/js/pdfjs/pdf-5.1.4.worker.min.js

Secure version paths:
/wp-content/plugins/PDFEmbedder-premium-secure/js/all-pdfemb-premium-5.1.4.min.js,
/wp-content/plugins/PDFEmbedder-premium-secure/js/pdfjs/pdf-5.1.4.min.js, and
/wp-content/plugins/PDFEmbedder-premium-secure/js/pdfjs/pdf-5.1.4.worker.min.js

Once you have excluded these paths, again  flush the cache, and do a hard reload the browser.

If after following the above steps the error persists, make a note of the file URL presented in the error message. You will need to determine how that file is being generated by your caching tool in order to prevent/exclude it.

Top