Skip to:
Content
Pages
Categories
Search
Top
Bottom

Errors that I am not able to understand

  • Everything was Fine and then I logged out…

    I got these errors

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-login.php on line 260

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-login.php on line 272

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 616

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 617

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 618

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 619

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 620

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 621

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 624

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 625

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 626

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 627

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 630

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 631

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 632

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 633

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 776

    Can’t remember doing anything wrong. Just added this plugin to the mu-plugins directory but I have tried deleting this plugin too.. but still does not work….

    Also when I go to someone’s profile it is displayed without any styling .. just the HTML.

    Can some one please figure out what’s wrong?

    I am also adding my function.php if it may help

    <?php

    /* Register the widget columns */
    register_sidebars( 1,
    array(
    'name' => 'left-column',
    'before_widget' => '<div id="%1$s" class="widget %2$s">',
    'after_widget' => '</div>',
    'before_title' => '<h2 class="widgettitle">',
    'after_title' => '</h2>'
    )
    );

    register_sidebars( 1,
    array(
    'name' => 'center-column',
    'before_widget' => '<div id="%1$s" class="widget %2$s">',
    'after_widget' => '</div>',
    'before_title' => '<h2 class="widgettitle">',
    'after_title' => '</h2>'
    )
    );

    register_sidebars( 1,
    array(
    'name' => 'right-column',
    'before_widget' => '<div id="%1$s" class="widget %2$s">',
    'after_widget' => '</div>',
    'before_title' => '<h2 class="widgettitle">',
    'after_title' => '</h2>'
    )
    );

    register_sidebars( 1,
    array(
    'name' => 'blog-sidebar',
    'before_widget' => '<div id="%1$s" class="widget %2$s">',
    'after_widget' => '</div>',
    'before_title' => '<h2 class="widgettitle">',
    'after_title' => '</h2>'
    )
    );

    register_sidebars( 1,
    array(
    'name' => 'second',
    'before_widget' => '<div id="%1$s" class="widget %2$s">',
    'after_widget' => '</div>',
    'before_title' => '<h2 class="widgettitle">',
    'after_title' => '</h2>'
    )
    );

    register_sidebars( 1,
    array(
    'name' => 'first',
    'before_widget' => '<div id="%1$s" class="widget %2$s">',
    'after_widget' => '</div>',
    'before_title' => '<h2 class="widgettitle">',
    'after_title' => '</h2>'
    )
    );

    /* Catch specific URLs */

    function bp_home_theme_catch_urls() {
    global $bp, $current_blog;

    if ( $bp['current_component'] == NEWS_SLUG && $bp['current_action'] == '' ) {
    query_posts('showposts=15');
    bp_catch_uri( 'index', true );
    }
    }
    add_action('wp', 'bp_home_theme_catch_urls', 1 );

    function bp_show_register_page() {
    global $bp, $current_blog;

    if ( $bp['current_component'] == REGISTER_SLUG && $bp['current_action'] == '' ) {
    bp_core_signup_set_headers();
    bp_catch_uri( 'register', true );
    }
    }
    add_action( 'wp', 'bp_show_register_page', 2 );

    function bp_show_activation_page() {
    global $bp, $current_blog;

    if ( $bp['current_component'] == ACTIVATION_SLUG && $bp['current_action'] == '' ) {
    bp_core_activation_set_headers();
    bp_catch_uri( 'activate', true );
    }
    }
    add_action( 'wp', 'bp_show_activation_page', 2 );

    ?>

    <?php function _user_name()
    {
    global $userdata;
    get_currentuserinfo();
    echo $userdata->user_login;
    }
    ?>

    And well these are the errors when I try to log in

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-login.php on line 260

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-login.php on line 272

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 601

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 602

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 603

    Warning: Cannot modify header information - headers already sent by (output started at /var/www/web149/web/wp-content/themes/buddypress-home/functions.php:106) in /var/www/web149/web/wp-includes/pluggable.php on line 776

Viewing 2 replies - 1 through 2 (of 2 total)

  • Burt Adsit
    Participant

    @burtadsit

    These are your programming problems or your mu configuration problems not related to bp. Try the mu forums.

    https://mu.wordpress.org/forums/

    Posting massive error logs to a forum doesn’t help. It just annoys the people who might have helped.

    If you had started out giving an overview of your problem and how it relates to bp, you may get better results next time.

    That’s fine.I am sorry .. was just trying to give maximum information possible for someone to help me.

    BTW I know about the wpmu forums and I had already posted a topic there. I just wanted to be sure that these errors are not due to some bp bug or something.

    Thanks anyways!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Errors that I am not able to understand’ is closed to new replies.
Skip to toolbar