• OK so I get this error message when i try and access certain pages on my WordPress site.

    Warning: Cannot modify header information – headers already sent by (output started at /home/content/58/7887658/html/index.php(1) : eval()’d code:7) in /home/content/58/7887658/html/wp-includes/pluggable.php on line 933

    And I have followed the recommended steps to fix it. (Spaces before or after <?php >? tags). And still have the problem.

    I have been searching the internet for a solution to no success.

    Also for some reason my site appears very funky in IE7 not sure if the problems are related….

    My site used to be working 100% and today for some reason decided to fail.

    https://www.gulfharbourluxury.com is the website. and to show header error goto
    https://www.gulfharbourluxury.com/properties

    please help I am completely lost

    -Thanks

Viewing 15 replies - 1 through 15 (of 32 total)
  • This error is usually attributed to spacing before and after <?php ?> tags so double check to make sure there is not spacing or empty lines in between any closing and opening tags. Look at the config.php file for any spaces. The config file is the first to run when a wordpress page is being executed.

    The IE7 issue is attributed to css issues.

    Sorry the config.php file is not the first but it would cause this error.

    they are loaded in the following order.

    wordpress.php -> wp-blog-header.php -> wp-load.php -> wp-config.php -> wp-settings.php

    Thread Starter cfair22

    (@cfair22)

    OK so I looked at all those files and still having same problem.

    Wouldn’t the issue be in pluggable.php considering thats what the header error says?

    Would it be possible to just remove the line(s) of code that isn’t working right?

    if ( !$is_IIS && php_sapi_name() != 'cgi-fcgi' )
    		status_header($status); // This causes problems on IIS and some FastCGI setups
    	header("Location:$location",true,$status);}
    endif;

    Are you on a windows server?

    Thread Starter cfair22

    (@cfair22)

    I just figured it out, I needed a wordpress upgrade… It replaced the pluggable.php for the new update. ??

    but for some reason I am still having issues with style in IE…. not sure what the issue is but it is totally messed up…

    Any ideas how to fix that? is there a way to style only for IE?

    Thanks again

    Thread Starter cfair22

    (@cfair22)

    I think there is some problem with the font-size… but would that throw the whole website off?

    not sure how to make font-size the same for both browsers? … never had this problem before on any of my websites

    there is a way to style only for IE but I try to avoid running to many style sheets, but if you are having an issue its ok to use a few hacks

    add this line of code bellow your primary stylesheet and change out whatever version you are having an issue with in IE

    <!–[if IE 6]>
    <link rel=”stylesheet” type=”text/css” href=”iespecific.css” />
    <![endif]–>

    Fonts will render different in IE and many other browsers. Its just the lay of the land my friend.

    Thread Starter cfair22

    (@cfair22)

    I got the font-size fixed, but the images are still messing up.

    Thanks again for your help

    Thread Starter cfair22

    (@cfair22)

    Bah, I thought it was fixed, just looked again and its back to header error… getting annoying

    the upgrade fixed it for about 30 minutes…. now not working

    whats your url?

    Thread Starter cfair22

    (@cfair22)

    https://www.gulfharbourluxury.com/properties

    is the link to the header error.

    Thread Starter cfair22

    (@cfair22)

    I checked the index.php file and the link you gave and the first code is
    <?php

    and the last line of code is
    ?>

    not sure what else to do…

    No blank lines or spaces before or after?

    I am not seeing an error on the link provided?

Viewing 15 replies - 1 through 15 (of 32 total)
  • The topic ‘Header Already Sent By… Pluggable.php Line 933 Also IE style is Bad’ is closed to new replies.