• I just installed word press on one of my websites, I keep getting this error message any time I try to edit the site. Any idea how to fix this?

    Warning: Cannot modify header information – headers already sent by (output started at /home/danielle/public_html/gagepark/wp-content/themes/beautiful-sunrise-10/functions.php:72) in /home/danielle/public_html/gagepark/wp-includes/pluggable.php on line 770

Viewing 4 replies - 1 through 4 (of 4 total)
  • In your theme ( the PHP file ) you are writing content while in pluggable.php a ‘header’-function is called. Headers *must* always be written before any content finds it’s way out.

    Check functions.php en quite probably there is an enter too much before starting the PHP code ( in top of the file ). If that’s not the case, check if anything else is writing to the output ( with commands like ‘echo’) .

    Thread Starter hobeika

    (@hobeika)

    I’m sorry, I am just learning php so would it be possible to get a step-by step way to fix this? I am a little confused.

    Thank you so much for your help.

    1) Open home/danielle/public_html/gagepark/wp-content/themes/beautiful-sunrise-10/functions.php and check line 72.

    2) Kill any output happening there.

    3) Check if everything still works

    Thread Starter hobeika

    (@hobeika)

    Awesome. That worked perfectly. Thank you so much for your help!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Issues with pluggable.php’ is closed to new replies.