| Linux hosting5.siteguarding.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64 Path : /home/devsafetybis/j524.dev.safetybis.com/installation/includes/ |
| Current File : /home/devsafetybis/j524.dev.safetybis.com/installation/includes/framework.php |
<?php
/**
* @package Joomla.Installation
* @subpackage Application
*
* @copyright (C) 2005 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
\defined('_JEXEC') or die;
// Ensure sensible default for JDEBUG is set.
const JDEBUG = false;
// Check if a configuration file already exists.
if (
file_exists(JPATH_CONFIGURATION . '/configuration.php')
&& (filesize(JPATH_CONFIGURATION . '/configuration.php') > 10)
&& !file_exists(JPATH_INSTALLATION . '/index.php')
) {
header('Location: ../index.php');
exit();
}
// Import the Joomla Platform.
require_once JPATH_LIBRARIES . '/bootstrap.php';
// If debug mode enabled, set new Exception handler with debug enabled.
if (JDEBUG) {
$errorHandler->setExceptionHandler(
[
new \Symfony\Component\ErrorHandler\ErrorHandler(null, true),
'renderException',
]
);
}