Hi,
I just spent the last few hours trying to get my new WordPress blog working, like many on here.
I kept getting the error:
Warning: Cannot modify header information - headers already sent by (output started at /seanscarpetcare.com/blog/wp-config.php:1) in /seanscarpetcare.com/blog/wp-login.php on line 302
The solution that worked for me:
It had nothing to do with line 1 ("...php:1" <-) and nothing to do with with line 302.
The whole problem was right here: (the code at the bottom of the wp-config.php file)
*this is the actual code at the bottom
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');
_______________________________________________ <- there was this space (the line represents the end of the file)
To solve the problem I just removed the space
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');
I made website to show this:
http://www.seanscarpetcare.com/noheaderproblem.htm
Hope this helps....Caused me a lot of trouble so I thought I would help