MODPATH/gleez/classes/kohana.php [ 324 ]
319 }
320 }
321
322 if ( ! is_writable(Kohana::$cache_dir))
323 {
324 throw new Gleez_Exception('Directory :dir must be writable',
325 array(':dir' => Debug::path(Kohana::$cache_dir)));
326 }
327
328 if (isset($settings['cache_life']))
329 {
-
APPPATH/bootstrap.php [ 103 ] » Kohana::init(arguments)
0
array (size=4) "base_url" => string '/'(length=1) "index_file" => bool FALSE "caching" => bool TRUE "profile" => bool FALSE
98 Kohana::init(array( 99 'base_url' => '/', 100 'index_file' => FALSE, 101 'caching' => Kohana::$environment === Kohana::PRODUCTION, 102 'profile' => Kohana::$environment !== Kohana::PRODUCTION, 103 )); 104 105 /** 106 * Attach a file reader to config. Multiple readers are supported. 107 */ 108 Kohana::$config->attach(new Config_File);
-
DOCROOT/index.php [ 120 ] » require(arguments)
0
string '/home/ftp100usbjf2ttpf1r0g0qunszb/wwwroot/application/bootstrap.php'(length=67)
115 * Define the memory usage at the start of the application, used for profiling. 116 */ 117 defined('GLEEZ_START_MEMORY') OR define('GLEEZ_START_MEMORY', memory_get_usage()); 118 119 // Bootstrap the application 120 require APPPATH.'bootstrap'.EXT; 121 122 if (PHP_SAPI == 'cli') // Try and load minion 123 { 124 class_exists('Minion_Task') OR die('Please enable the Minion module for CLI support.'); 125 set_exception_handler(array('Minion_Exception', 'handler'));