/** * @package Joomla.Site * * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // Set flag that this is a parent file define('_JEXEC', 1); if (file_exists(__DIR__ . '/defines.php')) { require_once __DIR__ . '/defines.php'; } if (!defined('_JDEFINES')) { define('JPATH_BASE', __DIR__); require_once JPATH_BASE . '/includes/defines.php'; } require_once JPATH_BASE . '/includes/framework.php'; // Instantiate the application. $app = JFactory::getApplication('site'); // Execute the application. $app->execute();