• When I type my url in IE/Fox I can not see my web page. All was working fine but now I get this massage:

    Warning: Cannot modify header information - headers already sent by (output started at /home/pol10001/public_html/wp-config.php:57) in /home/pol10001/public_html/wp-includes/pluggable.php on line 689

    I can not access anything. not even the admin panel. This massage is all I see ?

    Any advice ?
    What do I do ?

Viewing 3 replies - 1 through 3 (of 3 total)
  • this means you have included the header.php file twice somewhere!

    Thread Starter hellows

    (@hellows)

    Found a Solution:
    Here we go !

    1) Find the header() statement that is causing the problem. The error must be at or before this line.

    2) Look for any statements that could send output to the user before this header statement. If you find one or more, find some way to move the header statement before them. Complex conditional statements may complicate the issue, but they may also help solve the problem. Consider a conditional expression at the top of the PHP script that determines the header value as early as possible and sets it there.

    3) Make sure there is no white space outside of the php start and end tags. While a blank line before the <?php start tag may look innocent, when processed by PHP, it will turn into an echo statement printing out a blank line. This is a common culprit.

    but thanks robine.

    This seems to happen alot with wp-config.php. If you haven’t found the whitespace yet you might try there.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘HELP – My WordPress is down !’ is closed to new replies.