= 5.3, it is recommended to disable * deprecated notices. Disable with: E_ALL & ~E_DEPRECATED */ error_reporting(E_ALL | E_STRICT); /** * End of standard configuration! Changing any of the code below should only be * attempted by those with a working knowledge of Kohana internals. * * @see http://kohanaframework.org/guide/using.configuration */ // Set the full path to the docroot define('DOCROOT', realpath(dirname(__FILE__)).DIRECTORY_SEPARATOR); // Make the application relative to the docroot if ( ! is_dir($application) AND is_dir(DOCROOT.$application)) $application = DOCROOT.$application; // Make the modules relative to the docroot if ( ! is_dir($modules) AND is_dir(DOCROOT.$modules)) $modules = DOCROOT.$modules; // Make the system relative to the docroot if ( ! is_dir($system) AND is_dir(DOCROOT.$system)) $system = DOCROOT.$system; // Define the absolute paths for configured directories define('APPPATH', realpath($application).DIRECTORY_SEPARATOR); define('MODPATH', realpath($modules).DIRECTORY_SEPARATOR); define('SYSPATH', realpath($system).DIRECTORY_SEPARATOR); // Clean up the configuration vars unset($application, $modules, $system); if (file_exists('install'.EXT)) { // Load the installation check return include 'install'.EXT; } if ( ! defined('KOHANA_START_TIME')) { /** * Define the start time of the application, used for profiling. */ define('KOHANA_START_TIME', microtime(TRUE)); } if ( ! defined('KOHANA_START_MEMORY')) { /** * Define the memory usage at the start of the application, used for profiling. */ define('KOHANA_START_MEMORY', memory_get_usage()); } // Load the core Kohana class require SYSPATH.'classes/kohana/core'.EXT; if (is_file(APPPATH.'classes/kohana'.EXT)) { // Application extends the core require APPPATH.'classes/kohana'.EXT; } else { // Load empty core extension require SYSPATH.'classes/kohana'.EXT; } // Bootstrap the application require APPPATH.'bootstrap'.EXT;