OK, here is wp-config.php:
<?php
/**
* The base configurations of the WordPress.
*
* This file has the following configurations: MySQL settings, Table Prefix,
* Secret Keys, WordPress Language, and ABSPATH. You can find more information
* by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
* wp-config.php} Codex page. You can get the MySQL settings from your web host.
*
* This file is used by the wp-config.php creation script during the
* installation. You don't have to use the web site, you can just copy this file
* to "wp-config.php" and fill in the values.
*
* @package WordPress
*/
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wordpress');
/** MySQL database username */
define('DB_USER', <em>[redacted</em>]);
/** MySQL database password */
define('DB_PASSWORD', '<em>[redacted</em>]);
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
/**#@+
* Authentication Unique Keys and Salts.
*
* Change these to different unique phrases!
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
* You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
*
* @since 2.6.0
*/
define('AUTH_KEY', 'Ld99#/|^!*l@4ibWX16-vA.nYxe-/3vvJSUyDGf(2OO!3w+nx/_1Xn ruUA_A.M');
define('SECURE_AUTH_KEY', '|>]9wNZVC =6v0uxC^*})d+[msd1=ixuy~x6w};3 9T:+3}Cf49)O:0~WIZ)63sK');
define('LOGGED_IN_KEY', '[B<s*Ut)cPA-+SY)iYyRU^=a9S>K*qe9-Zk5]TO&-uHL6AV 8{|%ur>lap^9zGd');
define('NONCE_KEY', '-:!#%XedZ,(#/{AK:Oc{x<+7ddN ~;=/j,|-w[]UqB<fZ:.4N}&23 xA@euhCi1~');
define('AUTH_SALT', 'Ev].<QXr#QLo;-WG1o%n?mg(JDc|$)kRB]#ir|h|.T};K|:s{tCo.+Ke%lXl3/H');
define('SECURE_AUTH_SALT', 'h +(!--A6]|.pxGQ#MP
Eqf!Y.mO@U+/A#Vj<k]K((>I/r/QWHma3o-G|-$l>8+9');
define('LOGGED_IN_SALT', '<x<J>8S:Mrua-|AeSh&HeRk!R%9>Yio]oUq+R)(WT9/K#er@(+!fQ{@x@UT=7WUs');
define('NONCE_SALT', '0i|SF<gpr{ AZ/B2H^BR1i_k~]5K=vAOS{~2cTHq:hgnjHQDoS q{iL~8lTfyk(');
/**#@-*/
/**
* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = 'wp_';
/**
* WordPress Localized Language, defaults to English.
*
* Change this to localize WordPress. A corresponding MO file for the chosen
* language must be installed to wp-content/languages. For example, install
* de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
* language support.
*/
define('WPLANG', '');
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*/
define('WP_DEBUG', false);
/* Multisite */
define( 'WP_ALLOW_MULTISITE', true );
define('SUBDOMAIN_INSTALL', true);
define('DOMAIN_CURRENT_SITE', 'byerspublishing.com');
define('PATH_CURRENT_SITE', '/');
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
/* That's all, stop editing! Happy blogging. */
/** Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');
And heree is my latest session, showing that the credentials entered into wp-config.php are correct and working:
ted@Ubuntu-Server:~$ mysql -u wordpress -pDidr39Qcab wordpress
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 59
Server version: 5.5.35-0ubuntu0.12.04.2 (Ubuntu)
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> exit
Bye
ted@Ubuntu-Server:~$
So, no, the database details have not been changed.
What else can/should be checked?
Thanks
Ted
PS: I suppose I will need to change the user name and password, having posted this. Right?