The processing in /includes/application_top.php that detects the condition displayed is
Code:
/**
* if main configure file doesn't contain valid info (ie: is dummy or doesn't match filestructure, display assistance page to suggest running the installer)
*/
if (!defined('DIR_FS_CATALOG') || !is_dir(DIR_FS_CATALOG.'/includes/classes')) {
$problemString = 'includes/configure.php file contents invalid. ie: DIR_FS_CATALOG not valid or not set';
require('includes/templates/template_default/templates/tpl_zc_install_suggested_default.php');
exit;
}
The processing has successfully found your /includes/configure.php file and, having loaded it, further found that the settings aren't correct.
You don't, perchance, have a /includes/local/configure.php file set? That's the only other factor that could affect this error message.
You could either post (or PM) the contents of your /includes/configure.php file and I'll give it a look-see.
Do any of your admin pages load?