This is what my config file looks like right now:
********
<?php
// ** MySQL settings ** //
define(‘DB_NAME’, ‘***’); // The name of the database
define(‘DB_USER’, ‘***’); // Your MySQL username
define(‘DB_PASSWORD’, ‘***’); // …and password
define(‘DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value
// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = ‘wp_’; // Only numbers, letters, and underscores please!
// 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’, ”);
/* That’s all, stop editing! Happy blogging. */
define(‘ABSPATH’, /var/www/vhosts/ebooktalk.net/httpdocs/(__FILE__).’/’);
require_once(‘ /var/www/vhosts/ebooktalk.net/httpdocs/wp-settings.php’);
?>
I just tweaked some things and tried again.. same problem:
wp-config.php file. I need this before we can get started. Need more help? We got it. You can create a wp-config.php file through a web interface, but this doesn’t work for all server setups. The safest way is to manually create the file.”); require_once(‘/var/www/vhosts/ebooktalk.net/httpdocs/wp-config.php’); require_once(‘/var/www/vhosts/ebooktalk.net/httpdocs/upgrade-functions.php’); $schema = ( isset($_SERVER[‘HTTPS’]) && strtolower($_SERVER[‘HTTPS’]) == ‘on’ ) ? ‘https://’ : ‘https://’; $guessurl = str_replace(‘/wp-admin/install.php?step=2’, ”, $schema . $_SERVER[‘HTTP_HOST’] . dirname($_SERVER[‘PHP_SELF’]) ); if (isset($_GET[‘step’])) $step = $_GET[‘step’]; else $step = 0; header( ‘Content-Type: text/html; charset=utf-8’ ); ?>
hide_errors(); $installed = $wpdb->get_results(“SELECT * FROM $wpdb->users”); if ($installed) die(‘
‘.__(‘Already Installed’).’
‘.__(‘You appear to have already installed WordPress. To reinstall please clear your old database tables first.’).’
‘); $wpdb->show_errors(); switch($step) { case 0: ?>
ReadMe documentation at your leisure.’), ‘../readme.html’); ?>
etc.. etc…