36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* @package Sport Stars
|
|
*
|
|
* @created 19th April 2022
|
|
* @author Llewellyn van der Merwe <https://git.vdm.dev/Llewellyn>
|
|
* @git WEBD-325-45 <https://git.vdm.dev/Llewellyn/WEBD-325-45>
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
defined('_LEXEC') or die;
|
|
|
|
// System includes
|
|
// source: https://github.com/joomla/joomla-cms/blob/4.1-dev/includes/framework.php#L14
|
|
require_once LPATH_LIBRARIES . '/bootstrap.php';
|
|
|
|
// Installation check, and check on removal of the installation directory.
|
|
// source: https://github.com/joomla/joomla-cms/blob/4.1-dev/includes/framework.php#L17
|
|
if (!file_exists(LPATH_CONFIGURATION . '/config.php')
|
|
|| (filesize(LPATH_CONFIGURATION . '/config.php') < 10)
|
|
|| (file_exists(LPATH_INSTALLATION . '/index.php')))
|
|
{
|
|
if (file_exists(LPATH_INSTALLATION . '/index.php'))
|
|
{
|
|
header('Location: ' . substr($_SERVER['REQUEST_URI'], 0, strpos($_SERVER['REQUEST_URI'], 'index.php')) . 'installation/index.php');
|
|
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
echo 'No configuration file found and no installation code available. Exiting...';
|
|
|
|
exit;
|
|
}
|
|
}
|