@leoraphael Same here! This just broke our entire site, since remote jQuery failed to load and therefore all jQuery-dependant scripts threw an error.
Please fix it asap.
Right now you can fix the issue by turning the Load JQuery Remotely under CDN tab to OFF.
dagan
(@daganloygmailcom)
This broke my site too. But what happened exactly? It looks like google never had the file or litespeed somehow updated their plugin externally? Anyway, yes by turning it off, it works again.
@prowebassist @daganloygmailcom
I do not know the reason, but after having been updated to WordPress 5.2.1, a problem occurred in the website suddenly.
While investigating the cause, I confirmed that there was an error in the operation of JQuery, and arrived at the solution by the setting change of LiteSpeed Cache plug-in.
Since disabling the plug-in worked correctly, as a result of thoroughly verifying the setting items, the problem was solved by not using “JQuery Remote Import” as Google or Cdnjs.
Hi there,
I had the same issue,
in the latest wordpress core in wp-includes/script-loader.php on line 1015
There are the following two lines that correspond to the incorrect jquery version
$scripts->add( ‘jquery’, false, array( ‘jquery-core’, ‘jquery-migrate’ ), ‘1.12.4-wp’ );
$scripts->add( ‘jquery-core’, ‘/wp-includes/js/jquery/jquery.js’, array(), ‘1.12.4-wp’ );
the 4th argument is the version number
in the plugin it looks like you’re pulling the version number from wordpress core in litespeed-cache-cdn.class.php line 590
Kind Regards,
oliver
Also thanks @tomrobak for the quick fix video :p
@oliverhtml @tomrobak @hailite
Thank you for your reply and explanation.
I will temporarily stop using the external jquery and wait for the plugin to be updated.
It was saved by everyone’s quick response. I’m really thankful to you.
-
This reply was modified 6 years, 11 months ago by
LeoRaphael.
dagan
(@daganloygmailcom)
Yes, we’ll all be waiting for 2.9.8
Thank you.
I am not sure this is a proper way to fix the issue. Jquery 1.12.4 is no longer maintained, that’s why WordPress applied some security patches from later versions to it and started delivering it as “1.12.4-wp”. Removing “-wp” switches you to unpatched version from Google CDN.
Please read here – https://core.trac.wordpress.org/ticket/47342#comment:3
That is true. As commented in the end, maybe we should wait for the latest jquery in WP v5.4/5.5 to solve this issue? As to use external jQuery, I am not sure where we can find the wp customized patch one.