Problem: Warning: Header may not contain more than a single header, new line detected.
Case:There is a space after the site or home URL.
Fix:
Method 1 (recommended)
- Click Settings in your WordPress DashBoard.
- Click on General.
- Make sure that their isn’t a space after the two URLs in the WordPress address (URL) and Site address (URL) text fields.
Method 2
- Login to phpMyAdmin
- Go to the wp_options table.
- Find and edit the records for “siteurl” and “home”, make sure they do not have any spaces after.
Or optionally, on Method 2, you can go into phpMyAdmin and run this SQL query
(replace www.domain.com with your domain):
UPDATE `wp_options` SET option_value='
http://www.domain.com' WHERE option_name='siteurl' OR option_name='home';