When I look in my config.inc.php file I don't see anything like the above. Everthing starts out with $cfg["hhh"] = "". So my question is, are these considered constants and if so are they safe, and finally where do I put them. I know all the values for the variables, but I'm not sure where I should list these in my config file.
Not sure which file you are looking at, because the config.inc.php file has exactly this on lines 9 thru 13.
$POLLDB["dbName"] = "";
$POLLDB["host"] = "localhost";
$POLLDB["user"] = "root";
$POLLDB["pass"] = "";
$POLLDB["class"] = "class_mysql.php";
It is in the "include" folder. Just open the include/config.inc.php file and add your info between the quotes for "dbname", "user" and "pass". Most hosts add a prefix to any database info, so if yours does, you would need to include the prefix, also, like "myprefix_mydatabase" and "myprefix_myusername"
How long should it take to install at this point? I click the next button and it seems like nothing is happening even after 5 minutes.
Probably nothing is happening because the info is not set correctly in the config.inc.php file. Fix that item and things should move quickly.