10) && !file_exists(JPATH_INSTALLATION.'/index.php')) { header('Location: ../index.php'); exit(); } // // Joomla system startup. // // Bootstrap the Joomla Framework. require_once JPATH_LIBRARIES.'/import.php'; // Botstrap the CMS libraries. require_once JPATH_LIBRARIES.'/cms.php'; // Joomla library imports. jimport('joomla.database.table'); jimport('joomla.environment.uri'); jimport('joomla.utilities.arrayhelper'); // Create the application object. $app = JFactory::getApplication('installation'); // Initialise the application. $app->initialise(); // Render the document. $app->render(); // Return the response. echo $app;