I posted some days ago but didn't seem to get more than one reply. I have tried to install WordPress a number of times now. I have changed only the database info in the wp-config.php file, and put a new prefix to add a new table. I have downloaded new copies with each installation, and I'm still getting the same error messages. I'm posting the content of my file here so people will know that I didn't change anything to do with any languages (nor did I touch any other file but the wp-config.php file).
<?php
// ** MySQL settings ** //
define('DB_NAME', 'jblue'); // The name of the database
define('DB_USER', 'jblue'); // Your MySQL username
define('DB_PASSWORD', 'fakepassword'); // ...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 = 'knitblog2_'; // 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');
?>
Then when I tried and run the install.php file I get this:
Warning: Unable to access /home/jblue/public_html/knit2/wp-includes/languages/en_US.mo in /home/jblue/public_html/knit2/wp-includes/wp-l10n.php on line 66
Warning: Cannot add header information - headers already sent by (output started at /home/jblue/public_html/knit2/wp-includes/wp-l10n.php:66) in /home/jblue/public_html/knit2/wp-admin/install.php on line 16
WordPress
Welcome to WordPress installation. We’re now going to go through a few steps to get you up and running with the latest in personal publishing platforms. You may want to peruse the ReadMe documentation at your leisure.
First Step »
That's it. I have tried from both a Mac and PC, using Wordpad, BBEdit, anything I can. Is the problem with the server? I know we have PHP installed.
If anyone can help, I'd really appreciate it! This is extremely frustrating. I'm not PHP expert but I do web design and coding so I know I haven't changed anything in the code that I shouldn't have. Thank you.