Warning: Cannot modify header information - headers already sent by (output started at /home/******/public_html/wp-includes/functions.php:3198) in /home/*****/public_html/wp-includes/option.php on line 773
How To Fix ?
Warning: Cannot modify header information - headers already sent by (output started at /home/******/public_html/wp-includes/functions.php:3198) in /home/*****/public_html/wp-includes/option.php on line 773
How To Fix ?
Something is writing to the output buffer in advance of WordPress try to set the headers, resulting in the error you see. Usually this is a space or other character at the beginning of one of your files (not option.php
, this is the file trying to set a header()
, the error is probably in your theme or wp-config.php
).
Remove the code that is sending the text (whatever it may be) and the error will go away.