When I run the wp-install script, I receive this:
1. SQL/DB Error --
2. [
1. Error establishing a database connection!
2. Are you sure you have the correct user/password?
3. Are you sure that you have typed the correct hostname?
4. Are you sure that the database server is running?
]
1. SQL/DB Error --
2. [
1. Error selecting database db95628109!
2. Are you sure it exists?
3. Are you sure there is a valid database connection?
]
Fatal error: Failed opening required 'ABSPATHwp-includes/wp-db.php' (include_path='.:/usr/local/lib/php') in /homepages/1/d94435456/htdocs/wp-settings.php on line 24
I manually set up my DB on the host, and it automatically supplies the name, username and PW. I plugged them into the config script, as well as the db_host, which was explicitly specified when I built the DB. I tried switching that back to "localhost," but it did no good.
My config script is as follows:
<?php
/** WordPress's config file **/
// ** MySQL settings **
define('DB_NAME', 'db95628109'); // The name of the database
define('DB_USER', 'dbo95628109'); // Your MySQL username
define('DB_PASSWORD', '<deleted>'); // ...and password
define('DB_HOST', 'db51.perfora.net'); // 99% chance you won't need to change this value
// Database tables' names
//
// Change them if you want to have multiple blogs in a single database.
// If you already have custom names leave table_prefix empty and just
// edit the names.
$table_prefix = 'wp_'; // eg 'wp_' or 'b2' or 'mylogin_'
$tableposts = $table_prefix . 'wp_db95628109_posts';
$tableusers = $table_prefix . 'wp_db95628109_users';
$tablesettings = $table_prefix . 'wp_db95628109_settings'; // only used during upgrade
$tablecategories = $table_prefix . 'wp_db95628109_categories';
$tablecomments = $table_prefix . 'wp_db95628109_comments';
$tablelinks = $table_prefix . 'wp_db95628109_links';
$tablelinkcategories = $table_prefix . 'wp_db95628109_linkcategories';
$tableoptions = $table_prefix . 'wp_db95628109_options';
$tableoptiontypes = $table_prefix . 'wp_db95628109_optiontypes';
$tableoptionvalues = $table_prefix . 'wp_db95628109_optionvalues';
$tableoptiongroups = $table_prefix . 'wp_db95628109_optiongroups';
$tableoptiongroup_options = $table_prefix . 'wp_db95628109_optiongroup_options';
// This is the name of the include directory. No "/" allowed.
$b2inc = 'b2-include';
/* Stop editing */
$HTTP_HOST = getenv('HTTP_HOST'); /* domain name */
$REMOTE_ADDR = getenv('REMOTE_ADDR'); /* visitor's IP */
$HTTP_USER_AGENT = getenv('HTTP_USER_AGENT'); /* visitor's browser */
$server = DB_HOST;
$loginsql = DB_USER;
$passsql = DB_PASSWORD;
$base = DB_NAME;
$abspath = dirname(__FILE__).'/';
// pull in the day and month translations and the smilies
require_once($abspath.'wp-config-extra.php');
require_once($abspath.$b2inc.'/wp-db.php');
require_once($abspath.$b2inc.'/b2functions.php');
require_once($abspath.'wp-settings.php');
?>
Is there anyone out there who can see any glaring errors and point me in the right direction?