• Hi, I am seeing a lot of these errors in my server error log and am wondering if they are WP related or something else.

    [Mon May 22 00:00:00.00000 2022] [core:error] [pid 314711:tid 3952284256000] [client 000.255.000.0:00000] AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.referer: https://www.wpsite.org/about-us/some-page/

    • This topic was modified 2 years, 10 months ago by Jan Dembowski.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator t-p

    (@t-p)

    Thread Starter wyclef

    (@wyclef)

    Thanks. Sorry for the delayed response.

    I am also seeing the following error, related to the following code in functions.

    mod_fcgid: stderr: PHP Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘extended_editor_mce_buttons_2’ not found or invalid function name in /home/user/domain.net/wp-includes/class-wp-hook.php on line 289, referer: https://www.domain.net/about/

    // Disable All TinyMCE Buttons
    if (isset($wp_version)) {
        add_filter('mce_buttons', 'extended_editor_mce_buttons', 0);
        add_filter('mce_buttons_2', 'extended_editor_mce_buttons_2', 0);
    }
    
    // TinyMCE: First line toolbar customizations
    if( !function_exists('base_extended_editor_mce_buttons') ){
        function base_extended_editor_mce_buttons($buttons) {
            return array( 'formatselect', 'template', 'bold', 'italic', 'link', 'wp_adv' );
        }
        add_filter("mce_buttons", "base_extended_editor_mce_buttons", 0);
    }
    
    // TinyMCE: Second line toolbar customizations
    if( !function_exists('base_extended_editor_mce_buttons_2') ){
        function base_extended_editor_mce_buttons_2($buttons) {
            return array( 'pastetext', 'charmap', 'undo', 'redo', 'code' );
        }
        add_filter("mce_buttons_2", "base_extended_editor_mce_buttons_2", 0);
    }

    This is running on WP 5.4.9, PHP 7.4. Are these connected or two separate errors?

    Moderator t-p

    (@t-p)

    Try manually resetting your plugins (no Dashboard access required). If that resolves the issue, reactivate each one individually until you find the cause.

    If that does not resolve the issue, access your server via SFTP or FTP, or a file manager in your hosting account’s control panel, navigate to /wp-content/themes/ and rename the directory of your currently active theme. This will force the default theme to activate and hopefully rule-out a theme-specific issue (theme functions can interfere like plugins).

    Thread Starter wyclef

    (@wyclef)

    Thanks, I will try this.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Core Error in Server Error Log?’ is closed to new replies.