Hi @patbell101,
This is very bad error because normally it would never happen. The code around line 2679 (I assume your WP is 4.7.2) looks like this:
function wp_die( $message = '', $title = '', $args = array() ) {
if ( wp_doing_ajax() ) {
$function = apply_filters( 'wp_die_ajax_handler', '_ajax_wp_die_handler' );
} elseif ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ) {
$function = apply_filters( 'wp_die_xmlrpc_handler', '_xmlrpc_wp_die_handler' );
} else {
$function = apply_filters( 'wp_die_handler', '_default_wp_die_handler' );
}
call_user_func( $function, $message, $title, $args );
}
The “Warning” arise from the last function call_user_func()
and said that “The variable $function
was not an array or string”. But the above code would set $function
properly in any case.
Your warning looks like this?
https://fournotespublishing.com/question/11-the-white-album-contains/comment-page-171/
So I recommend you to try one of blows:
1. Enable Debugging in WordPress and investigate the cause of warning or error.
2. Decrease the number of plugins you installed. c.f. https://wp-types.com/forums/topic/layout-1-8-8-wont-upload/
3. Increase your PHP memory limit. c.f. https://www.kriesi.at/support/topic/cant-upload-enfold-theme/
4. Re-install WP except the root wp-config.php & .htaccess files and the wp-content folder. c.f. https://www.ads-software.com/support/topic/error-wp-includesfunctionsphp-on-line-2117-dashboard-navigation-wp-v381/#post-5157066
I hope this help you.
-
This reply was modified 7 years, 9 months ago by tokkonopapa.