• Anyone know how to solve this problem ? I can’t sign into the wordpress admin layer~

    Warning: Cannot modify header information – headers already sent by (output started at /home2/cv/public_html/wp-blog-header.php:2) in /home2/cv/public_html/wp-includes/pluggable.php on line 1228

Viewing 5 replies - 1 through 5 (of 5 total)
  • Moderator James Huff

    (@macmanx)

    You have unexpected whitespace (either a space or an entire line) on line 2 of the wp-blog-header.php file. See this guide for more info.

    Alternatively, replacing the file with one from a fresh download may resolve the issue.

    Thread Starter Moralis

    (@moralis)

    Hy,James Huff~
    Thank you for answering my question,
    But I can’t figure out any unexpected whitespace in my wp-blog-header.php~
    —————————————————————
    <?php
    /**
    * Loads the WordPress environment and template.
    *
    * @package WordPress
    */

    if ( !isset($wp_did_header) ) {

    $wp_did_header = true;

    require_once( dirname(__FILE__) . ‘/wp-load.php’ );

    wp();

    require_once( ABSPATH . WPINC . ‘/template-loader.php’ );

    }
    —————————————————————

    Moderator James Huff

    (@macmanx)

    That base64 stuff shouldn’t be there. Unfortunately, you have a much bigger problem. 🙁

    Remain calm and carefully follow this guide. When you’re done, you may want to implement some (if not all) of the recommended security measures.

    Thread Starter Moralis

    (@moralis)

    So how can I solve the problem ?

    Moderator James Huff

    (@macmanx)

    Carefully follow the guide I linked to.

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

The topic ‘Warning: Cannot modify header information’ is closed to new replies.