so...
wp-config.php reads as follows
<?php
// ** MySQL settings ** //
// ** MySQL settings ** //
define(’DB_NAME’, ‘wordpress’); // The name of the database
define(’DB_USER’, ‘root’); // Your MySQL username
define(’DB_PASSWORD’, ”); // …and password (needs to be empty, just for local install)
define(’DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value
define('WP_HOME', 'http://localhost/wordpress');
define('ABSPATH', dirname(__FILE__).'/');
require_once(ABSPATH.'wp-settings.php');
?>
i have also changed "siteurl" and "home" in the database table "wp_options" to http://localhost/wordpress
in phpmyadmin i can see the db and have done some queries and the db looks fine
localhost/wordpress returns an "error establishing a db connection"
any more ideas?