| Current Path : /home/u4uwebca/public_html/pano.4uweb.ca/includes/ |
| Current File : /home/u4uwebca/public_html/pano.4uweb.ca/includes/bootstrap.php |
<?php /** * @package panopticon * @copyright Copyright (c)2023-2024 Nicholas K. Dionysopoulos / Akeeba Ltd * @license https://www.gnu.org/licenses/agpl-3.0.txt GNU Affero General Public License, version 3 or later */ use Akeeba\Panopticon\Application\BootstrapUtilities; use Akeeba\Panopticon\Library\Plugin\PluginHelper; // I must include the file since the autoloader is not yet set up. require_once APATH_ROOT . '/src/Application/BootstrapUtilities.php'; // Basic environment checks BootstrapUtilities::assertMinimumPHPVersion(); BootstrapUtilities::assertNotHHVM(); BootstrapUtilities::assertComposerInstalled(); // Load the Composer autoloader require_once APATH_ROOT . '/vendor/autoload.php'; // Set up error handling BootstrapUtilities::applyExceptionsHandler(); // Apply debug-related user preferences before the application initialisation BootstrapUtilities::applySecret(); BootstrapUtilities::applyErrorReportingToPHP(); BootstrapUtilities::applyDebugToConstant(); BootstrapUtilities::conditionallyForceBladeRecompilation(); // Apply network-related settings BootstrapUtilities::applyLoadBalancerConfiguration(); BootstrapUtilities::applyCustomCAFile(); // Apply options which require access to the DI container BootstrapUtilities::loadConfiguration(); BootstrapUtilities::setUpUserManager(); BootstrapUtilities::fallbackLanguage(); // Tell MySQL to use the GMT timezone for NOW() and other time functions (this preserves our sanity!) BootstrapUtilities::mySQLUseGMT(); // Evaluate IP blocking BootstrapUtilities::evaluateIPBlocking(); // Apply user-supplied code and miscellaneous files BootstrapUtilities::loadUserCode(); // Addresses MySQL errors about the sort buffer being too short, especially when sending email. BootstrapUtilities::workaroundMySQLSortBufferSize(); // Load plugins PluginHelper::loadPlugins();