Hi JuggleDad-
The other sites I am using Atahualpa on are working fine when I save settings, so something must be wrong with this one (
http://healrewireyourbrain.com). Here is the wp-config.php code (I hid the password with ********). Everything looks fine to me.
<?php
/** WordPress's config file **/
/**
http://wordpress.org/ **/
// ** MySQL settings ** //
define('WP_CACHE', true); //Added by WP-Cache Manager
define('DB_NAME', 'healrewireyourbrain'); // The name of the database
define('DB_USER', 'cscholz'); // Your MySQL username
define('DB_PASSWORD', '***********'); // ...and password
define('DB_HOST', 'mysql.catswebweave.com'); // ...and the server MySQL is running on
// Change the prefix if you want to have multiple blogs in a single database.
$table_prefix = 'wp_iwb2wj_'; // example: 'wp_' or 'b2' or 'mylogin_'
// 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', '');
/* Stop editing */
$server = DB_HOST;
$loginsql = DB_USER;
$passsql = DB_PASSWORD;
$base = DB_NAME;
define('ABSPATH', dirname(__FILE__).'/');
// Get everything else
require_once(ABSPATH.'wp-settings.php');
?>