I got it working. The problem was in the wordpress-config.php

Before:
// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = DB_PREFIX . 'wp_'; // Only numbers, letters, and underscores please!
After:
// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = 'wp_'; // Only numbers, letters, and underscores please!
Thanks to everyone that offered up suggestions. I appreciate it. I am sure I will be back with some more questions as I try to tweak the layout to my liking.