QUOTE(ChaosTheory @ Jun 13 2008, 09:46 PM)

I've uploaded the wordpress folder to the root of the web server; I created a database and user. I applied the all the privileges to the user account. I just don't see what could be wrong? Every time I try to install wordpress by going to "../wordpress/wp-admin/install.php" i just get "Error establishing a database connection" it tells me to check my wp-config.php file.
This is a snippet of my wp-config.php file, I’m pretty sure that I’ve put in all the right stuff.
CODE
define('DB_NAME', 'jonathankelada_wpblog');
define('DB_USER', 'jonathankelada_admin');
define('DB_PASSWORD', '*password*');
define('DB_HOST', 'localhost');
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');
Have a missed anything? Any help would be greatly appreciated!
Try this:
Limit the letters, including the underscore, to 16.
DB_Name: jonathankelada_w
DB_User: jonathankelada_a
Since "jonathankelada_" is already 15 so the only choice is to add just 1 letter.
Hope this helps.