<?php /* Get the config file. */ $configFile = dirname(dirname(__FILE__)) . '/config/config.php'; include $configFile; $params = ''; if(isset($_GET['mode']) and $_GET['mode'] == 'getconfig') $params = '?mode=getconfig'; /* Locate to different entry according installed or not. */ empty($config->installed) ? header('location: sys/install.php') : header("location: sys/index.php{$params}");