It's on default. Totally base install, except for the backup plugin is installed.
------------
wp-config.php
------------
<?php
// ** MySQL settings ** //
define('DB_NAME', 'thrtwoth_wp'); // The name of the database
define('DB_USER', 'thrtwoth_julie'); // Your MySQL username
define('DB_PASSWORD', 'XXXXX'); // ...and password
define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value
// Change the prefix if you want to have multiple blogs in a single database.
$table_prefix = 'jules_'; // 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 */
define('ABSPATH', dirname(__FILE__).'/');
require_once(ABSPATH.'wp-settings.php');
?>
------------
------------
cpanel datbase stuff
thrtwoth_wp
Users in wp
thrtwoth_julie (Privileges: ALL PRIVILEGES)
connection string
$dbh=mysql_connect ("localhost", "thrtwoth_julie", "<PASSWORD HERE>") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("thrtwoth_wp");
------------
------------
Any ideas?