////////// snip from application_top.php
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')) { require('includes/templates/template_default/templates/tpl_zc_install_suggested_default.php'); exit; } /** * Check requested domain name matches Zen Cart config. Compliments of meshgraphics.com. */ if (!defined('HTTP_SERVER') || 'http://'. $_SERVER['SERVER_NAME'] != HTTP_SERVER){ require('includes/templates/template_default/templates/tpl_zc_install_suggested_default.php'); exit; }




