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