APPPATH/libraries/MY_Exceptions.php [ 84 ]
79
80 // Set the handler for shutdown to catch Parse errors
81 register_shutdown_function(array('MY_Exceptions', 'shutdown_handler'));
82
83 // This is a hack to set the default timezone if it isn't set. Not setting it causes issues.
84 date_default_timezone_set(date_default_timezone_get());
85 }
86
87 /**
88 * Debug Path
89 *
-
{PHP internal call} » MY_Exceptions->error_handler(arguments)
code2
errordate_default_timezone_get(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone.
file/var/www/vhosts/signgraphs.com/beta.bailotean.do/application/libraries/MY_Exceptions.php
line84
4Array ( )
-
APPPATH/libraries/MY_Exceptions.php [ 84 ] » date_default_timezone_get()
79 80 // Set the handler for shutdown to catch Parse errors 81 register_shutdown_function(array('MY_Exceptions', 'shutdown_handler')); 82 83 // This is a hack to set the default timezone if it isn't set. Not setting it causes issues. 84 date_default_timezone_set(date_default_timezone_get()); 85 } 86 87 /** 88 * Debug Path 89 * -
SYSDIR/codeigniter/Common.php [ 142 ] » MY_Exceptions->__construct()
137 138 if ($is_subclass == TRUE) 139 { 140 $name = config_item('subclass_prefix').$class; 141 142 $objects[$class] =& instantiate_class(new $name()); 143 return $objects[$class]; 144 } 145 146 $name = ($class != 'Controller') ? 'CI_'.$class : $class; 147 -
APPPATH/hooks/uhoh.php [ 35 ] » load_class(arguments)
classExceptions
30 } 31 else 32 { 33 // For CodeIgniter 1.7.2 34 define('ABS_SYSDIR', realpath(BASEPATH) . '/'); 35 load_class('Exceptions'); 36 } 37 } -
SYSDIR/libraries/Hooks.php [ 214 ] » load_exceptions(arguments)
0209 if ( ! function_exists($function)) 210 { 211 require($filepath); 212 } 213 214 $function($params); 215 } 216 217 $this->in_progress = FALSE; 218 return TRUE; 219 } -
SYSDIR/libraries/Hooks.php [ 107 ] » CI_Hooks->_run_hook(arguments)
dataArray ( [function] => load_exceptions [filename] => uhoh.php [filepath] => hooks )102 $this->_run_hook($val); 103 } 104 } 105 else 106 { 107 $this->_run_hook($this->hooks[$which]); 108 } 109 110 return TRUE; 111 } 112 -
SYSDIR/codeigniter/CodeIgniter.php [ 89 ] » CI_Hooks->_call_hook(arguments)
whichpre_system
84 /* 85 * ------------------------------------------------------ 86 * Is there a "pre_system" hook? 87 * ------------------------------------------------------ 88 */ 89 $EXT->_call_hook('pre_system'); 90 91 /* 92 * ------------------------------------------------------ 93 * Instantiate the base classes 94 * ------------------------------------------------------ -
FCPATH/index.php [ 125 ] » require_once(arguments)
0/var/www/vhosts/signgraphs.com/beta.bailotean.do/core_system/codeigniter/CodeIgniter.php
120 |--------------------------------------------------------------- 121 | 122 | And away we go... 123 | 124 */ 125 require_once BASEPATH.'codeigniter/CodeIgniter'.EXT; 126 127 /* End of file index.php */ 128 /* Location: ./index.php */