WordPress 4.9.5 Wreaked Havoc on my Website
-
EDIT: I have backups of my site, but how do I stop WordPress from automatically updating to 4.9.5 and messing up the site again?
The website itself works, but when I go into WordPress this happened to one of my two websites after updating:
I don’t know where to start. Here are some of the problems:
Plugin updates show up sometimes.
If I try to update a plugin I get:
Warning: call_user_func() expects parameter 1 to be a valid callback, no array or string given in /home/<This part left out>/wp-includes/functions.php on line 2692Line 2692 is the very last line of the following function. This one….
call_user_func( $function, $message, $title, $args );function wp_die( $message = '', $title = '', $args = array() ) { if ( is_int( $args ) ) { $args = array( 'response' => $args ); } elseif ( is_int( $title ) ) { $args = array( 'response' => $title ); $title = ''; } if ( wp_doing_ajax() ) { /** * Filters the callback for killing WordPress execution for Ajax requests. * * @since 3.4.0 * * @param callable $function Callback function name. */ $function = apply_filters( 'wp_die_ajax_handler', '_ajax_wp_die_handler' ); } elseif ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ) { /** * Filters the callback for killing WordPress execution for XML-RPC requests. * * @since 3.4.0 * * @param callable $function Callback function name. */ $function = apply_filters( 'wp_die_xmlrpc_handler', '_xmlrpc_wp_die_handler' ); } else { /** * Filters the callback for killing WordPress execution for all non-Ajax, non-XML-RPC requests. * * @since 3.0.0 * * @param callable $function Callback function name. */ $function = apply_filters( 'wp_die_handler', '_default_wp_die_handler' ); } call_user_func( $function, $message, $title, $args ); }
Google Analytics Dashboard Graph just gives an Invalid response error -30
I tried clearing all my caches, but no help. Is my best bet to revert to an UpdraftPlus backup, or maybe a slightly older cpanel backup, rather than attempting to fix this since things are so bad, or are there other things i can try first.
In the almost 3 years of running WordPress this is the first issue with a core update.
- The topic ‘WordPress 4.9.5 Wreaked Havoc on my Website’ is closed to new replies.