<?php
// Bootstrap the framework DO NOT edit this
require COREPATH . 'bootstrap.php';
\Autoloader::add_classes( [
// Add classes you want to override here
'Log' => APPPATH . 'classes/log.php',
'Errorhandler' => APPPATH . 'classes/errorhandler.php',
'PhpErrorException' => APPPATH . 'classes/errorhandler.php',
] );
// Register the autoloader
\Autoloader::register();
\Fuel::$env = ( isset( $_SERVER['FUEL_ENV'] ) ? $_SERVER['FUEL_ENV'] : \Fuel::DEVELOPMENT );
// Initialize the framework with the config file.
\Fuel::init( 'config.php' );
It looks like you're new here. If you want to get involved, click one of these buttons!