ErrorException

ini_set(): Session ini settings cannot be changed after headers have already been sent search →

SYSTEMPATH/Session/Session.php at line 294

287      * Handle input binds and configuration defaults.
288      */
289     protected function configure()
290     {
291         if (empty($this->sessionCookieName)) {
292             $this->sessionCookieName ini_get('session.name');
293         } else {
294             ini_set('session.name', $this->sessionCookieName);
295         }
296 
297         $sameSite $this->cookie->getSameSite() ?: ucfirst(Cookie::SAMESITE_LAX);
298 
299         $params = [
300             'lifetime' => $this->sessionExpiration,
301             'path'     => $this->cookie->getPath(),
  1. {PHP internal code}   —  CodeIgniter\Debug\Exceptions->errorHandler ()

  2. SYSTEMPATH/Session/Session.php : 294   —   ini_set()

  3. SYSTEMPATH/Session/Session.php : 240   —  CodeIgniter\Session\Session->configure ()

    233 
    234         if (session_status() === PHP_SESSION_ACTIVE) {
    235             $this->logger->warning('Session: Sessions is enabled, and one exists. Please don\'t $session->start();');
    236 
    237             return;
    238         }
    239 
    240         $this->configure();
    241         $this->setSaveHandler();
    242 
    243         // Sanitize the cookie, because apparently PHP doesn't do that for userspace handlers
    244         if (isset($_COOKIE[$this->sessionCookieName])
    245             && (! is_string($_COOKIE[$this->sessionCookieName]) || ! preg_match('#\A' $this->sidRegexp '\z#'$_COOKIE[$this->sessionCookieName]))
    246         ) {
    247             unset($_COOKIE[$this->sessionCookieName]);
    
  4. SYSTEMPATH/Config/Services.php : 674   —  CodeIgniter\Session\Session->start ()

    667         $driver = new $driverName($configAppServices::request()->getIPAddress());
    668         $driver->setLogger($logger);
    669 
    670         $session = new Session($driver$config);
    671         $session->setLogger($logger);
    672 
    673         if (session_status() === PHP_SESSION_NONE) {
    674             $session->start();
    675         }
    676 
    677         return $session;
    678     }
    679 
    680     /**
    681      * The Throttler class provides a simple method for implementing
    
  5. SYSTEMPATH/Config/BaseService.php : 252   —  CodeIgniter\Config\Services::session ()

    245     {
    246         $service = static::serviceExists($name);
    247 
    248         if ($service === null) {
    249             return null;
    250         }
    251 
    252         return $service::$name(...$arguments);
    253     }
    254 
    255     /**
    256      * Check if the requested service is defined and return the declaring
    257      * class. Return null if not found.
    258      */
    259     public static function serviceExists(string $name): ?string
    
  6. SYSTEMPATH/Config/BaseService.php : 193   —  CodeIgniter\Config\BaseService::__callStatic ()

    186             return static::$mocks[$key];
    187         }
    188 
    189         if (! isset(static::$instances[$key])) {
    190             // Make sure $getShared is false
    191             $params[] = false;
    192 
    193             static::$instances[$key] = AppServices::$key(...$params);
    194         }
    195 
    196         return static::$instances[$key];
    197     }
    198 
    199     /**
    200      * The Autoloader class is the central class that handles our
    
  7. SYSTEMPATH/Config/Services.php : 641   —  CodeIgniter\Config\BaseService::getSharedInstance ()

    634      * Return the session manager.
    635      *
    636      * @return Session
    637      */
    638     public static function session(?App $config nullbool $getShared true)
    639     {
    640         if ($getShared) {
    641             return static::getSharedInstance('session', $config);
    642         }
    643 
    644         $config ??= config('App');
    645         assert($config instanceof App);
    646 
    647         $logger AppServices::logger();
    648 
    
  8. SYSTEMPATH/Config/BaseService.php : 252   —  CodeIgniter\Config\Services::session ()

    245     {
    246         $service = static::serviceExists($name);
    247 
    248         if ($service === null) {
    249             return null;
    250         }
    251 
    252         return $service::$name(...$arguments);
    253     }
    254 
    255     /**
    256      * Check if the requested service is defined and return the declaring
    257      * class. Return null if not found.
    258      */
    259     public static function serviceExists(string $name): ?string
    
  9. APPPATH/Config/Globals.php : 29   —  CodeIgniter\Config\BaseService::__callStatic ()

    22     public static $authCheck false;
    23     public static $authUser null;
    24     public static $darkMode 0;
    25 
    26     public static function setGlobals()
    27     {
    28         self::$db \Config\Database::connect();
    29         $session = \Config\Services::session();
    30         //set themes
    31         self::$themes self::$db->table('themes')->get()->getResult();
    32         //set general settings
    33         self::$generalSettings self::$db->table('general_settings')->where('id'1)->get()->getRow();
    34         //set routes
    35         self::$customRoutes self::$db->table('routes')->get()->getRow();
    36         //set languages
    
  10. APPPATH/Config/Globals.php : 120   —  Config\Globals::setGlobals ()

    113 
    114     public static function updateLangBaseURL($shortForm)
    115     {
    116         self::$langBaseUrl base_url($shortForm);
    117     }
    118 }
    119 
    120 Globals::setGlobals();
    121 
    
  11. include_once SYSTEMPATH/Autoloader/Autoloader.php   —   include_once()

  12. SYSTEMPATH/Autoloader/Autoloader.php : 289   —  CodeIgniter\Autoloader\Autoloader->includeFile ()

    282 
    283         foreach ($this->prefixes as $namespace => $directories) {
    284             foreach ($directories as $directory) {
    285                 $directory rtrim($directory'\\/');
    286 
    287                 if (strpos($class$namespace) === 0) {
    288                     $filePath $directory str_replace('\\'DIRECTORY_SEPARATORsubstr($classstrlen($namespace))) . '.php';
    289                     $filename = $this->includeFile($filePath);
    290 
    291                     if ($filename) {
    292                         return $filename;
    293                     }
    294                 }
    295             }
    296         }
    
  13. SYSTEMPATH/Autoloader/Autoloader.php : 267   —  CodeIgniter\Autoloader\Autoloader->loadInNamespace ()

    260      *                      on failure.
    261      */
    262     public function loadClass(string $class)
    263     {
    264         $class trim($class'\\');
    265         $class str_ireplace('.php'''$class);
    266 
    267         return $this->loadInNamespace($class);
    268     }
    269 
    270     /**
    271      * Loads the class file for a given class name.
    272      *
    273      * @param string $class The fully-qualified class name
    274      *
    
  14. APPPATH/Config/Routes.php : 7   —  CodeIgniter\Autoloader\Autoloader->loadClass ()

     1 <?php
     2 
     3 namespace Config;
     4 
     5 // Create a new instance of our RouteCollection class.
     6 $routes Services::routes();
     7 $languages = Globals::$languages;
     8 $generalSettings Globals::$generalSettings;
     9 $customRoutes Globals::$customRoutes;
    10 
    11 /*
    12  * --------------------------------------------------------------------
    13  * Router Setup
    14  * --------------------------------------------------------------------
    15  */
    
  15. require SYSTEMPATH/Router/RouteCollection.php   —   require()

  16. SYSTEMPATH/CodeIgniter.php : 800   —  CodeIgniter\Router\RouteCollection->loadRoutes ()

    793      * @return string|string[]|null Route filters, that is, the filters specified in the routes file
    794      *
    795      * @throws RedirectException
    796      */
    797     protected function tryToRouteIt(?RouteCollectionInterface $routes null)
    798     {
    799         if ($routes === null) {
    800             $routes = Services::routes()->loadRoutes();
    801         }
    802 
    803         // $routes is defined in Config/Routes.php
    804         $this->router Services::router($routes$this->request);
    805 
    806         $path $this->determinePath();
    807 
    
  17. SYSTEMPATH/CodeIgniter.php : 447   —  CodeIgniter\CodeIgniter->tryToRouteIt ()

    440      *
    441      * @deprecated $returnResponse is deprecated.
    442      */
    443     protected function handleRequest(?RouteCollectionInterface $routesCache $cacheConfigbool $returnResponse false)
    444     {
    445         $this->returnResponse $returnResponse;
    446 
    447         $routeFilter = $this->tryToRouteIt($routes);
    448 
    449         $uri $this->determinePath();
    450 
    451         if ($this->enableFilters) {
    452             // Start up the filters
    453             $filters Services::filters();
    454 
    
  18. SYSTEMPATH/CodeIgniter.php : 366   —  CodeIgniter\CodeIgniter->handleRequest ()

    359             $this->response->send();
    360             $this->callExit(EXIT_SUCCESS);
    361 
    362             return;
    363         }
    364 
    365         try {
    366             return $this->handleRequest($routes, $cacheConfig, $returnResponse);
    367         } catch (RedirectException $e) {
    368             $logger Services::logger();
    369             $logger->info('REDIRECTED ROUTE at ' $e->getMessage());
    370 
    371             // If the route is a 'redirect' route, it throws
    372             // the exception with the $to as the message
    373             $this->response->redirect(base_url($e->getMessage()), 'auto'$e->getCode());
    
  19. FCPATH/index.php : 80   —  CodeIgniter\CodeIgniter->run ()

    73  *---------------------------------------------------------------
    74  * LAUNCH THE APPLICATION
    75  *---------------------------------------------------------------
    76  * Now that everything is set up, it's time to actually fire
    77  * up the engines and make this app do its thang.
    78  */
    79 
    80 $app->run();
    81 //echo password_hash('12345678', PASSWORD_DEFAULT);
    

$_SERVER

Key Value
LSPHP_ProcessGroup on
PATH /usr/local/bin:/bin:/usr/bin
HTTP_ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7
HTTP_ACCEPT_ENCODING br
HTTP_HOST currishine.com
HTTP_PRAGMA no-cache
HTTP_USER_AGENT Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_CACHE_CONTROL no-cache
HTTP_X_FORWARDED_FOR 18.225.57.39
HTTP_X_FORWARDED_PROTO https
HTTP_X_REAL_IP 18.225.57.39
HTTP_X_REAL_PORT 4706
HTTP_X_FORWARDED_PORT 443
HTTP_X_PORT 443
HTTP_X_LSCACHE 1
HTTP_SEC_CH_UA "HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"
HTTP_SEC_CH_UA_MOBILE ?0
HTTP_SEC_CH_UA_PLATFORM "Windows"
HTTP_UPGRADE_INSECURE_REQUESTS 1
HTTP_SEC_FETCH_SITE none
HTTP_SEC_FETCH_MODE navigate
HTTP_SEC_FETCH_USER ?1
HTTP_SEC_FETCH_DEST document
HTTP_PRIORITY u=0, i
DOCUMENT_ROOT /home/u797684447/domains/currishine.com/public_html
REMOTE_ADDR 18.225.57.39
REMOTE_PORT 48316
SERVER_ADDR 2a02:4780:b:731:0:2f8b:b2df:b
SERVER_NAME currishine.com
SERVER_ADMIN
SERVER_PORT 443
REQUEST_SCHEME https
REQUEST_URI /tag/fashion
REDIRECT_URL /tag/fashion
REDIRECT_REQUEST_METHOD GET
PROXY_REMOTE_ADDR 2a02:4780:2c:d::3
HTTPS on
CRAWLER_USLEEP 1000
CRAWLER_LOAD_LIMIT_ENFORCE 25
H_PLATFORM Hostinger
H_TYPE business
H_CANARY false
H_STAGING false
REDIRECT_STATUS 200
SSL_PROTOCOL TLSv1.3
SSL_CIPHER TLS_AES_256_GCM_SHA384
SSL_CIPHER_USEKEYSIZE 256
SSL_CIPHER_ALGKEYSIZE 256
SCRIPT_FILENAME /home/u797684447/domains/currishine.com/public_html/index.php
QUERY_STRING
SCRIPT_URI https://currishine.com/tag/fashion
SCRIPT_URL /tag/fashion
SCRIPT_NAME /index.php
SERVER_PROTOCOL HTTP/1.1
SERVER_SOFTWARE LiteSpeed
REQUEST_METHOD GET
X-LSCACHE on,crawler,esi,combine
PHP_SELF /index.php
REQUEST_TIME_FLOAT
1736136784.2325
REQUEST_TIME
1736136784
CI_ENVIRONMENT development
ENVIRONMENT development
app.baseURL https://www.currishine.com/
PURCHASE_CODE
LICENSE_KEY nnaskdf
cookie.prefix vr_

Constants

Key Value
FCPATH /home/u797684447/domains/currishine.com/public_html/
CI_ENVIRONMENT development
APPPATH /home/u797684447/domains/currishine.com/public_html/app/
ROOTPATH /home/u797684447/domains/currishine.com/public_html/
SYSTEMPATH /home/u797684447/domains/currishine.com/public_html/system/
WRITEPATH /home/u797684447/domains/currishine.com/public_html/writable/
TESTPATH /
VR_DOMAIN currishine.com
APP_NAMESPACE App
COMPOSER_PATH /home/u797684447/domains/currishine.com/public_html/vendor/autoload.php
SECOND
1
MINUTE
60
HOUR
3600
DAY
86400
WEEK
604800
MONTH
2592000
YEAR
31536000
DECADE
315360000
EXIT_SUCCESS
0
EXIT_ERROR
1
EXIT_CONFIG
3
EXIT_UNKNOWN_FILE
4
EXIT_UNKNOWN_CLASS
5
EXIT_UNKNOWN_METHOD
6
EXIT_USER_INPUT
7
EXIT_DATABASE
8
EXIT__AUTO_MIN
9
EXIT__AUTO_MAX
125
EVENT_PRIORITY_LOW
200
EVENT_PRIORITY_NORMAL
100
EVENT_PRIORITY_HIGH
10
VARIENT_VERSION 2.2
IMG_PATH_BG_LG assets/img/img_bg_lg.png
IMG_PATH_BG_MD assets/img/img_bg_md.png
IMG_BASE64_1x1 data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==
IMG_BASE64_283x217 data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARsAAADZAQMAAAAqtAZpAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAB5JREFUGBntwYEAAAAAw6D7U8/gBNUAAAAAAAAAgC8fXQABZRtuDQAAAABJRU5ErkJggg==
IMG_BASE64_360x215 data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAWgAAADXAQMAAAANwFmCAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAACBJREFUGBntwTEBAAAAwiD7p14KP2AAAAAAAAAAAABwESaiAAGA8Fz0AAAAAElFTkSuQmCC
IMG_BASE64_380x226 data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAXwAAADiAQMAAAB3Mu4OAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAACBJREFUGBntwQEBAAAAgqD+r3ZIwAAAAAAAAAAAAADgSitCAAFPZQyzAAAAAElFTkSuQmCC
IMG_BASE64_450x280 data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAcIAAAEYAQMAAAD1c2RPAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAACVJREFUaN7twQEBAAAAgqD+r26IwAAAAAAAAAAAAAAAAAAAACDoP3AAASZRMyIAAAAASUVORK5CYII=
IMG_BASE64_600x460 data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAAHMAQMAAAAzt0RXAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAADhJREFUGBntwTEBAAAAwiD7p14MH2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAXYiQAAEBSA5gAAAAAElFTkSuQmCC
IMG_BASE64_750x500 data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAH0AQMAAABYdjrpAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAAERJREFUGBntwIEAAAAAwrD8qTM4wTYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAcLmMAAGcrU8TAAAAAElFTkSuQmCC
POST_NUM_LOAD_MORE
12
COMMENT_LIMIT
5
ENVIRONMENT development
SHOW_DEBUG_BACKTRACE
1
CI_DEBUG
1
KINT_DIR /home/u797684447/domains/currishine.com/public_html/system/ThirdParty/Kint
KINT_WIN

																	
KINT_PHP72
1
KINT_PHP73
1
KINT_PHP74
1
KINT_PHP80
1
KINT_PHP81
1
KINT_PHP82
1
KINT_PHP83

																	
Path https://www.currishine.com/tag/fashion
HTTP Method GET
IP Address 18.225.57.39
Is AJAX Request? no
Is CLI Request? no
Is Secure Request? yes
User Agent Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
No $_GET, $_POST, or $_COOKIE Information to show.

Headers

Header Value
Accept text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7
Accept-Encoding br
Host currishine.com
Pragma no-cache
User-Agent Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Cache-Control no-cache
X-Forwarded-For 18.225.57.39
X-Forwarded-Proto https
X-Real-Ip 18.225.57.39
X-Real-Port 4706
X-Forwarded-Port 443
X-Port 443
X-Lscache 1
Sec-Ch-Ua "HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"
Sec-Ch-Ua-Mobile ?0
Sec-Ch-Ua-Platform "Windows"
Upgrade-Insecure-Requests 1
Sec-Fetch-Site none
Sec-Fetch-Mode navigate
Sec-Fetch-User ?1
Sec-Fetch-Dest document
Priority u=0, i
Response Status 200 - OK

Headers

Header Value
Cache-Control no-store, max-age=0, no-cache
Content-Type text/html; charset=UTF-8
  1. FCPATH/index.php
  2. APPPATH/Config/Paths.php
  3. SYSTEMPATH/bootstrap.php
  4. APPPATH/ThirdParty/domain-parser/autoload.php
  5. APPPATH/ThirdParty/domain-parser/composer/autoload_real.php
  6. APPPATH/ThirdParty/domain-parser/composer/ClassLoader.php
  7. APPPATH/ThirdParty/domain-parser/composer/autoload_static.php
  8. APPPATH/ThirdParty/domain-parser/symfony/polyfill-mbstring/bootstrap.php
  9. APPPATH/ThirdParty/domain-parser/layershifter/tld-extract/src/static.php
  10. APPPATH/ThirdParty/domain-parser/layershifter/tld-extract/src/Extract.php
  11. APPPATH/ThirdParty/domain-parser/layershifter/tld-extract/src/IDN.php
  12. APPPATH/ThirdParty/domain-parser/layershifter/tld-database/src/Store.php
  13. APPPATH/ThirdParty/domain-parser/layershifter/tld-database/resources/database.php
  14. APPPATH/ThirdParty/domain-parser/layershifter/tld-support/src/Helpers/Str.php
  15. APPPATH/ThirdParty/domain-parser/layershifter/tld-support/src/Helpers/Arr.php
  16. APPPATH/ThirdParty/domain-parser/layershifter/tld-support/src/Helpers/IP.php
  17. APPPATH/ThirdParty/domain-parser/layershifter/tld-extract/src/Result.php
  18. APPPATH/ThirdParty/domain-parser/layershifter/tld-extract/src/ResultInterface.php
  19. APPPATH/Config/Constants.php
  20. APPPATH/Common.php
  21. SYSTEMPATH/Common.php
  22. SYSTEMPATH/Config/AutoloadConfig.php
  23. APPPATH/Config/Autoload.php
  24. SYSTEMPATH/Modules/Modules.php
  25. APPPATH/Config/Modules.php
  26. SYSTEMPATH/Autoloader/Autoloader.php
  27. SYSTEMPATH/Config/BaseService.php
  28. SYSTEMPATH/Config/Services.php
  29. APPPATH/Config/Services.php
  30. SYSTEMPATH/Autoloader/FileLocator.php
  31. SYSTEMPATH/Helpers/url_helper.php
  32. SYSTEMPATH/Config/DotEnv.php
  33. SYSTEMPATH/Config/Factories.php
  34. SYSTEMPATH/Config/Factory.php
  35. SYSTEMPATH/Config/BaseConfig.php
  36. APPPATH/Config/App.php
  37. SYSTEMPATH/CodeIgniter.php
  38. APPPATH/Config/Boot/development.php
  39. APPPATH/Config/Exceptions.php
  40. SYSTEMPATH/ThirdParty/PSR/Log/LogLevel.php
  41. SYSTEMPATH/HTTP/IncomingRequest.php
  42. SYSTEMPATH/HTTP/Request.php
  43. SYSTEMPATH/HTTP/OutgoingRequest.php
  44. SYSTEMPATH/HTTP/Message.php
  45. SYSTEMPATH/HTTP/MessageTrait.php
  46. SYSTEMPATH/HTTP/MessageInterface.php
  47. SYSTEMPATH/HTTP/OutgoingRequestInterface.php
  48. SYSTEMPATH/HTTP/RequestTrait.php
  49. SYSTEMPATH/HTTP/RequestInterface.php
  50. SYSTEMPATH/HTTP/URI.php
  51. SYSTEMPATH/HTTP/UserAgent.php
  52. APPPATH/Config/UserAgents.php
  53. SYSTEMPATH/HTTP/Header.php
  54. SYSTEMPATH/HTTP/Response.php
  55. SYSTEMPATH/HTTP/ResponseTrait.php
  56. SYSTEMPATH/HTTP/ResponseInterface.php
  57. SYSTEMPATH/Cookie/Cookie.php
  58. SYSTEMPATH/Cookie/CloneableCookieInterface.php
  59. SYSTEMPATH/Cookie/CookieInterface.php
  60. APPPATH/Config/ContentSecurityPolicy.php
  61. SYSTEMPATH/HTTP/ContentSecurityPolicy.php
  62. SYSTEMPATH/Cookie/CookieStore.php
  63. APPPATH/Config/Cookie.php
  64. SYSTEMPATH/Debug/Exceptions.php
  65. SYSTEMPATH/API/ResponseTrait.php
  66. SYSTEMPATH/ThirdParty/Kint/init.php
  67. SYSTEMPATH/ThirdParty/Kint/Kint.php
  68. SYSTEMPATH/ThirdParty/Kint/FacadeInterface.php
  69. SYSTEMPATH/ThirdParty/Kint/Utils.php
  70. SYSTEMPATH/ThirdParty/Kint/init_helpers.php
  71. APPPATH/Config/Kint.php
  72. SYSTEMPATH/ThirdParty/Kint/Renderer/AbstractRenderer.php
  73. SYSTEMPATH/ThirdParty/Kint/Renderer/RendererInterface.php
  74. SYSTEMPATH/ThirdParty/Kint/Renderer/RichRenderer.php
  75. SYSTEMPATH/ThirdParty/Kint/Renderer/CliRenderer.php
  76. SYSTEMPATH/ThirdParty/Kint/Renderer/TextRenderer.php
  77. SYSTEMPATH/Helpers/kint_helper.php
  78. APPPATH/Config/Database.php
  79. SYSTEMPATH/Database/Config.php
  80. SYSTEMPATH/Debug/Timer.php
  81. SYSTEMPATH/Events/Events.php
  82. APPPATH/Config/Events.php
  83. APPPATH/Config/Toolbar.php
  84. SYSTEMPATH/Debug/Toolbar.php
  85. SYSTEMPATH/Debug/Toolbar/Collectors/Timers.php
  86. SYSTEMPATH/Debug/Toolbar/Collectors/BaseCollector.php
  87. SYSTEMPATH/Debug/Toolbar/Collectors/Database.php
  88. SYSTEMPATH/Debug/Toolbar/Collectors/Logs.php
  89. SYSTEMPATH/Debug/Toolbar/Collectors/Views.php
  90. SYSTEMPATH/Debug/Toolbar/Collectors/Files.php
  91. SYSTEMPATH/Debug/Toolbar/Collectors/Routes.php
  92. SYSTEMPATH/Debug/Toolbar/Collectors/Events.php
  93. APPPATH/Config/Cache.php
  94. SYSTEMPATH/Cache/CacheFactory.php
  95. SYSTEMPATH/Cache/Handlers/FileHandler.php
  96. SYSTEMPATH/Cache/Handlers/BaseHandler.php
  97. SYSTEMPATH/Cache/CacheInterface.php
  98. SYSTEMPATH/Router/RouteCollection.php
  99. SYSTEMPATH/Router/RouteCollectionInterface.php
  100. APPPATH/Config/Routes.php
  101. APPPATH/Config/Globals.php
  102. SYSTEMPATH/Database/Database.php
  103. SYSTEMPATH/Database/MySQLi/Connection.php
  104. SYSTEMPATH/Database/BaseConnection.php
  105. SYSTEMPATH/Database/ConnectionInterface.php
  106. SYSTEMPATH/Log/Logger.php
  107. SYSTEMPATH/ThirdParty/PSR/Log/LoggerInterface.php
  108. APPPATH/Config/Logger.php
  109. APPPATH/Config/Session.php
  110. SYSTEMPATH/Session/Handlers/Database/MySQLiHandler.php
  111. SYSTEMPATH/Session/Handlers/DatabaseHandler.php
  112. SYSTEMPATH/Session/Handlers/BaseHandler.php
  113. SYSTEMPATH/ThirdParty/PSR/Log/LoggerAwareTrait.php
  114. SYSTEMPATH/Validation/FormatRules.php
  115. SYSTEMPATH/Session/Session.php
  116. SYSTEMPATH/Session/SessionInterface.php
  117. SYSTEMPATH/I18n/Time.php
  118. SYSTEMPATH/I18n/TimeTrait.php
  119. SYSTEMPATH/Helpers/array_helper.php
  120. SYSTEMPATH/Log/Handlers/FileHandler.php
  121. SYSTEMPATH/Log/Handlers/BaseHandler.php
  122. SYSTEMPATH/Log/Handlers/HandlerInterface.php
  123. APPPATH/Views/errors/html/error_exception.php
  124. SYSTEMPATH/ThirdParty/Escaper/Escaper.php
Memory Usage 4MB
Peak Memory Usage: 4MB
Memory Limit: 512M