is_mysql = true; if ( WP_DEBUG ) { $this->dbh = mysql_connect( $this->dbhost, $this->dbuser, $this->dbpassword, true, MYSQL_CLIENT_SSL ); } else { $this->dbh = @mysql_connect( $this->dbhost, $this->dbuser, $this->dbpassword, true, MYSQL_CLIENT_SSL ); } if ( !$this->dbh ) { if ( ! function_exists( 'wp_load_translations_early' ) ) // only 3.4+ gets the wonderful error messages, everyone else, you just die die( 'Error establishing database connection. Goodbye.' ); $this->bail( sprintf( __( "

Error establishing a database connection

This either means that the username and password information in your wp-config.php file is incorrect or we can't contact the database server at %s. This could mean your host's database server is down.

If you're unsure what these terms mean you should probably contact your host. If you still need help you can always visit the WordPress Support Forums.

" ), $this->dbhost ), 'db_connect_fail' ); return; } $this->set_charset( $this->dbh ); $this->ready = true; $this->select( $this->dbname, $this->dbh ); } } $wpdb = new dd32_wpdb_ssl( DB_USER, DB_PASSWORD, DB_NAME, DB_HOST );