Warning: Cannot modify header information
-
I’m trying to install wordpress at my website https://www.judithbarsi.com. I changed the details in my config file with notepad.
Here is the error it gives me at https://www.judithbarsi.com/wordpress/wp-admin/install.php:
Warning: Cannot modify header information – headers already sent by (output started at /home/celia/public_html/wordpress/wp-config.php:1) in /home/celia/public_html/wordpress/wp-admin/install.php on line 16
Here is my config code:
<?php
// ** MySQL settings ** //
define(‘DB_NAME’, ‘celia_wordpress’); // The name of the database
define(‘DB_USER’, ‘celia_celia’); // Your MySQL username
define(‘DB_PASSWORD’, ‘*************’); // …and password
define(‘DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = ‘wp_’; // Only numbers, letters, and underscores please!// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-includes/languages.
// For example, install de.mo to wp-includes/languages and set WPLANG to ‘de’
// to enable German language support.
define (‘WPLANG’, ”);/* That’s all, stop editing! Happy blogging. */
define(‘ABSPATH’, dirname(__FILE__).’/’);
require_once(ABSPATH.’wp-settings.php’);
?>
Line 16 is blank.When I went to find the language support folder, nothing was there. What do I have to do to get it to work?
- The topic ‘Warning: Cannot modify header information’ is closed to new replies.