Posted On October 3, 2021

WordPress NextGen Gallery Plugin Error

kimconnect 0 comments
blog.KimConnect.com >> Codes , Virtualization >> WordPress NextGen Gallery Plugin Error

Error Message:

Failed to load plugin url: /bitnami/wordpress/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/attach_to_post/static/ngg_attach_to_post_tinymce_plugin.js?ver=3.17

Resolution:

Although the root cause hasn’t been determined. This issue has automatically resolved when the running WordPress ‘container’ or ‘pod’ has been destroyed and recreated.

Posting this note here in case someone Googles similar error messages. Also, this maybe is a symptom of an unhealthy container in a pod.

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Basic HTML and HTML5: Link to Internal Sections of a Page with Anchor Elements

<h2>Demo</h2><main><a href="#footer">Jump to Bottom</a><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."><p>Kitty ipsum dolor…

Increase Windows Management Instrumentation Service Handle Quota Limit

WMI.ps1----------------------------------------------$config = gwmi -Class "__ProviderHostQuotaConfiguration" -Namespace root$config | select -Property * -ExcludeProperty __* | ft…

PowerShell: Check a List of Windows Computers for Online & Offline Statuses

# checkOnlineComputers.ps1 # Set a list of computers in a text file $computerListFile='C:\Temp\computerlist.txt' # Read…