Displayed at 17:10:36 — PHP: 8.2.30 — CodeIgniter: 4.7.0 -- Environment: development

ErrorException

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

SYSTEMPATH/Session/Session.php at line 154

147      *
148      * Handle input binds and configuration defaults.
149      *
150      * @return void
151      */
152     protected function configure()
153     {
154         ini_set('session.name', $this->config->cookieName);
155 
156         $sameSite $this->cookie->getSameSite() === ''
157             ucfirst(Cookie::SAMESITE_LAX)
158             : $this->cookie->getSameSite();
159 
160         $params = [
161             'lifetime' => $this->config->expiration,
  1. {PHP internal code}   —  CodeIgniter\Debug\Exceptions->errorHandler ()

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

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

    102 
    103         if (session_status() === PHP_SESSION_ACTIVE) {
    104             $this->logger->warning('Session: Sessions is enabled, and one exists. Please don\'t $session->start();');
    105 
    106             return null;
    107         }
    108 
    109         $this->configure();
    110         $this->setSaveHandler();
    111 
    112         // Sanitize the cookie, because apparently PHP doesn't do that for userspace handlers
    113         if (
    114             isset($_COOKIE[$this->config->cookieName])
    115             && (! is_string($_COOKIE[$this->config->cookieName]) || preg_match('#\A' $this->sidRegexp '\z#'$_COOKIE[$this->config->cookieName]) !== 1)
    116         ) {
    
  4. SYSTEMPATH/Config/Services.php : 715   —  CodeIgniter\Session\Session->start ()

    708         if (session_status() === PHP_SESSION_NONE) {
    709             // PHP Session emits the headers according to `session.cache_limiter`.
    710             // See https://www.php.net/manual/en/function.session-cache-limiter.php.
    711             // The headers are not managed by CI's Response class.
    712             // So, we remove CI's default Cache-Control header.
    713             AppServices::get('response')->removeHeader('Cache-Control');
    714 
    715             $session->start();
    716         }
    717 
    718         return $session;
    719     }
    720 
    721     /**
    722      * The Factory for SiteURI.
    
  5. SYSTEMPATH/Config/BaseService.php : 325   —  CodeIgniter\Config\Services::session ()

    318      * names.
    319      *
    320      * @return object|null
    321      */
    322     public static function __callStatic(string $name, array $arguments)
    323     {
    324         if (isset(static::$factories[$name])) {
    325             return static::$factories[$name](...$arguments);
    326         }
    327 
    328         $service = static::serviceExists($name);
    329 
    330         if ($service === null) {
    331             return null;
    332         }
    
  6. SYSTEMPATH/Config/BaseService.php : 264   —  CodeIgniter\Config\BaseService::__callStatic ()

    257             return static::$mocks[$key];
    258         }
    259 
    260         if (! isset(static::$instances[$key])) {
    261             // Make sure $getShared is false
    262             $params[] = false;
    263 
    264             static::$instances[$key] = AppServices::$key(...$params);
    265         }
    266 
    267         return static::$instances[$key];
    268     }
    269 
    270     /**
    271      * The Autoloader class is the central class that handles our
    
  7. SYSTEMPATH/Config/Services.php : 668   —  CodeIgniter\Config\BaseService::getSharedInstance ()

    661      * Return the session manager.
    662      *
    663      * @return Session
    664      */
    665     public static function session(?SessionConfig $config nullbool $getShared true)
    666     {
    667         if ($getShared) {
    668             return static::getSharedInstance('session', $config);
    669         }
    670 
    671         $config ??= config(SessionConfig::class);
    672 
    673         $logger AppServices::get('logger');
    674 
    675         $driverName $config->driver;
    
  8. SYSTEMPATH/Config/BaseService.php : 334   —  CodeIgniter\Config\Services::session ()

    327 
    328         $service = static::serviceExists($name);
    329 
    330         if ($service === null) {
    331             return null;
    332         }
    333 
    334         return $service::$name(...$arguments);
    335     }
    336 
    337     /**
    338      * Check if the requested service is defined and return the declaring
    339      * class. Return null if not found.
    340      */
    341     public static function serviceExists(string $name): ?string
    
  9. SYSTEMPATH/Config/BaseService.php : 203   —  CodeIgniter\Config\BaseService::__callStatic ()

    196      *
    197      * @param string $key Identifier of the entry to look for.
    198      *
    199      * @return object|null Entry.
    200      */
    201     public static function get(string $key): ?object
    202     {
    203         return static::$instances[$key] ?? static::__callStatic($key, []);
    204     }
    205 
    206     /**
    207      * Checks if a service instance has been created.
    208      *
    209      * @param string $key Identifier of the entry to check.
    210      *
    
  10. SYSTEMPATH/Common.php : 1114   —  CodeIgniter\Config\BaseService::get ()

    1107      *  - $timer = \CodeIgniter\Config\Services::timer();
    1108      *
    1109      * @param array|bool|float|int|object|string|null ...$params
    1110      */
    1111     function service(string $name, ...$params): ?object
    1112     {
    1113         if ($params === []) {
    1114             return Services::get($name);
    1115         }
    1116 
    1117         return Services::$name(...$params);
    1118     }
    1119 }
    1120 
    1121 if (! function_exists('single_service')) {
    
  11. SYSTEMPATH/Common.php : 1087   —   service()

  12. APPPATH/Services/AppContextService.php : 61   —   session()

  13. APPPATH/Config/Services.php : 45   —  App\Services\AppContextService->__construct ()

    38     public static function appContext(bool $getShared true): AppContextService
    39     {
    40         if ($getShared) {
    41             // Return the same instance every time (Singleton pattern)
    42             return static::getSharedInstance('appContext');
    43         }
    44 
    45         return new AppContextService();
    46     }
    47 
    48     /**
    49      * Auth Service
    50      *
    51      * @param bool $getShared
    52      * @return AuthService
    
  14. SYSTEMPATH/Config/BaseService.php : 264   —  Config\Services::appContext ()

    257             return static::$mocks[$key];
    258         }
    259 
    260         if (! isset(static::$instances[$key])) {
    261             // Make sure $getShared is false
    262             $params[] = false;
    263 
    264             static::$instances[$key] = AppServices::$key(...$params);
    265         }
    266 
    267         return static::$instances[$key];
    268     }
    269 
    270     /**
    271      * The Autoloader class is the central class that handles our
    
  15. APPPATH/Config/Services.php : 42   —  CodeIgniter\Config\BaseService::getSharedInstance ()

    35      * @param bool $getShared
    36      * @return AppContextService
    37      */
    38     public static function appContext(bool $getShared true): AppContextService
    39     {
    40         if ($getShared) {
    41             // Return the same instance every time (Singleton pattern)
    42             return static::getSharedInstance('appContext');
    43         }
    44 
    45         return new AppContextService();
    46     }
    47 
    48     /**
    49      * Auth Service
    
  16. SYSTEMPATH/Config/BaseService.php : 334   —  Config\Services::appContext ()

    327 
    328         $service = static::serviceExists($name);
    329 
    330         if ($service === null) {
    331             return null;
    332         }
    333 
    334         return $service::$name(...$arguments);
    335     }
    336 
    337     /**
    338      * Check if the requested service is defined and return the declaring
    339      * class. Return null if not found.
    340      */
    341     public static function serviceExists(string $name): ?string
    
  17. SYSTEMPATH/Config/BaseService.php : 203   —  CodeIgniter\Config\BaseService::__callStatic ()

    196      *
    197      * @param string $key Identifier of the entry to look for.
    198      *
    199      * @return object|null Entry.
    200      */
    201     public static function get(string $key): ?object
    202     {
    203         return static::$instances[$key] ?? static::__callStatic($key, []);
    204     }
    205 
    206     /**
    207      * Checks if a service instance has been created.
    208      *
    209      * @param string $key Identifier of the entry to check.
    210      *
    
  18. SYSTEMPATH/Common.php : 1114   —  CodeIgniter\Config\BaseService::get ()

    1107      *  - $timer = \CodeIgniter\Config\Services::timer();
    1108      *
    1109      * @param array|bool|float|int|object|string|null ...$params
    1110      */
    1111     function service(string $name, ...$params): ?object
    1112     {
    1113         if ($params === []) {
    1114             return Services::get($name);
    1115         }
    1116 
    1117         return Services::$name(...$params);
    1118     }
    1119 }
    1120 
    1121 if (! function_exists('single_service')) {
    
  19. APPPATH/Common.php : 9   —   service()

  20. APPPATH/Config/Routes.php : 9   —   getContextValue()

  21. require SYSTEMPATH/Router/RouteCollection.php   —   require()

  22. SYSTEMPATH/CodeIgniter.php : 818   —  CodeIgniter\Router\RouteCollection->loadRoutes ()

    811      * @throws RedirectException
    812      */
    813     protected function tryToRouteIt(?RouteCollectionInterface $routes null)
    814     {
    815         $this->benchmark->start('routing');
    816 
    817         if (! $routes instanceof RouteCollectionInterface) {
    818             $routes = service('routes')->loadRoutes();
    819         }
    820 
    821         // $routes is defined in Config/Routes.php
    822         $this->router Services::router($routes$this->request);
    823 
    824         // $uri is URL-encoded.
    825         $uri $this->request->getPath();
    
  23. SYSTEMPATH/CodeIgniter.php : 441   —  CodeIgniter\CodeIgniter->tryToRouteIt ()

    434      */
    435     protected function handleRequest(?RouteCollectionInterface $routesCache $cacheConfigbool $returnResponse false)
    436     {
    437         if ($this->request instanceof IncomingRequest && $this->request->getMethod() === 'CLI') {
    438             return $this->response->setStatusCode(405)->setBody('Method Not Allowed');
    439         }
    440 
    441         $routeFilters = $this->tryToRouteIt($routes);
    442 
    443         // $uri is URL-encoded.
    444         $uri $this->request->getPath();
    445 
    446         if ($this->enableFilters) {
    447             /** @var Filters $filters */
    448             $filters service('filters');
    
  24. SYSTEMPATH/CodeIgniter.php : 340   —  CodeIgniter\CodeIgniter->handleRequest ()

    333         $possibleResponse $this->runRequiredBeforeFilters($filters);
    334 
    335         // If a ResponseInterface instance is returned then send it back to the client and stop
    336         if ($possibleResponse instanceof ResponseInterface) {
    337             $this->response $possibleResponse;
    338         } else {
    339             try {
    340                 $this->response = $this->handleRequest($routes, config(Cache::class), $returnResponse);
    341             } catch (ResponsableInterface $e) {
    342                 $this->outputBufferingEnd();
    343 
    344                 $this->response $e->getResponse();
    345             } catch (PageNotFoundException $e) {
    346                 $this->response $this->display404errors($e);
    347             } catch (Throwable $e) {
    
  25. SYSTEMPATH/Boot.php : 417   —  CodeIgniter\CodeIgniter->run ()

    410 
    411     /**
    412      * Now that everything is set up, it's time to actually fire
    413      * up the engines and make this app do its thang.
    414      */
    415     protected static function runCodeIgniter(CodeIgniter $app): void
    416     {
    417         $app->run();
    418     }
    419 
    420     protected static function saveConfigCache(FactoriesCache $factoriesCache): void
    421     {
    422         $factoriesCache->save('config');
    423     }
    424 
    
  26. SYSTEMPATH/Boot.php : 68   —  CodeIgniter\Boot::runCodeIgniter ()

    61         if ($configCacheEnabled) {
    62             $factoriesCache = static::loadConfigCache();
    63         }
    64 
    65         static::autoloadHelpers();
    66 
    67         $app = static::initializeCodeIgniter();
    68         static::runCodeIgniter($app);
    69 
    70         if ($configCacheEnabled) {
    71             static::saveConfigCache($factoriesCache);
    72         }
    73 
    74         // Exits the application, setting the exit code for CLI-based
    75         // applications that might be watching.
    
  27. {PHP internal code}   —  CodeIgniter\Boot::bootWeb ()

  28. FCPATH/index.php : 9   —   eval()

$_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,*/*;q=0.8
HTTP_ACCEPT_ENCODING zstd, br, gzip
HTTP_ACCEPT_LANGUAGE en-US,en;q=0.5
HTTP_HOST vorkady.com
HTTP_USER_AGENT CCBot/2.0 (https://commoncrawl.org/faq/)
HTTP_IF_MODIFIED_SINCE Mon, 11 May 2026 06:11:14 GMT
DOCUMENT_ROOT /home/u304714648/domains/vorkady.com/public_html
REMOTE_ADDR 2600:1f28:365:80b0:df5b:d786:dbc3:932e
REMOTE_PORT 35208
SERVER_ADDR 2a02:4780:11:1767:0:1229:9398:3
SERVER_NAME vorkady.com
SERVER_ADMIN
SERVER_PORT 443
REQUEST_SCHEME https
REQUEST_URI /d/public-servants
PATH_INFO /d/public-servants
PATH_TRANSLATED /home/u304714648/domains/vorkady.com/public_html/d/public-servants
ORIG_PATH_INFO /d/public-servants
REDIRECT_URL /d/public-servants
REDIRECT_REQUEST_METHOD GET
HTTPS on
CRAWLER_USLEEP 1000
CRAWLER_LOAD_LIMIT_ENFORCE 25
H_PLATFORM Hostinger
H_TYPE shared
H_CANARY false
H_STAGING false
REDIRECT_STATUS 200
ratelimited_meta_externalagent 1
ratelimited_gptbot 1
ratelimited_chrome_88 1
ratelimited_chrome_124 1
X_SPDY HTTP2
SSL_PROTOCOL TLSv1.3
SSL_CIPHER TLS_AES_128_GCM_SHA256
SSL_CIPHER_USEKEYSIZE 128
SSL_CIPHER_ALGKEYSIZE 128
SCRIPT_FILENAME /home/u304714648/domains/vorkady.com/public_html/index.php
QUERY_STRING
SCRIPT_URI https://vorkady.com/d/public-servants
SCRIPT_URL /d/public-servants
CUR_REQUEST_URI /index.php/d/public-servants
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/d/public-servants
REQUEST_TIME_FLOAT
1784221836.1894
REQUEST_TIME
1784221836
CI_ENVIRONMENT development
app.baseURL https://vorkady.com/
PURCHASE_CODE e56dddca-cc78-4d24-a51b-201af2cd45de
LICENSE_KEY c1d9eb148f6463645b56d3eee7c8343f490a07f9d121b4fff0cf3c7973067b9e2ac87382261579e23420c7791b91b3017c0a4ed4762cb728796527d4d9bfe6db
cookie.prefix vr_

Constants

Key Value
FCPATH /home/u304714648/domains/vorkady.com/public_html/
APPPATH /home/u304714648/domains/vorkady.com/public_html/app/
ROOTPATH /home/u304714648/domains/vorkady.com/public_html/
SYSTEMPATH /home/u304714648/domains/vorkady.com/public_html/system/
WRITEPATH /home/u304714648/domains/vorkady.com/public_html/writable/
TESTPATH /
APP_NAMESPACE App
COMPOSER_PATH /home/u304714648/domains/vorkady.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
VARIENT_VERSION 3.0
LIMIT_SHOWCASE_POSTS
50
SIDEBAR_TAGS_LIMIT
20
BROWSER_CACHE
1
BROWSER_CACHE_VERSION_KEY vr_browser_cache_version
SITEMAP_REFRESH_INTERVAL
3600
AVATAR_GUEST assets/media/user.png
COMMENT_LIMIT
6
POST_TAGS_LIMIT
20
POST_DISPLAY_TITLE_LIMIT
55
POST_DISPLAY_SUMMARY_LIMIT
80
APP_CACHE_TTL
86400
FILE_MANAGER_PER_PAGE
120
ENVIRONMENT development
SHOW_DEBUG_BACKTRACE
1
CI_DEBUG
1
KINT_DIR /home/u304714648/domains/vorkady.com/public_html/system/ThirdParty/Kint
KINT_WIN

                                                                    
KINT_PHP80
1
KINT_PHP81
1
KINT_PHP82
1
KINT_PHP83

                                                                    
KINT_PHP84

                                                                    
KINT_PHP8412

                                                                    
KINT_PHP85

                                                                    
Path https://vorkady.com/d/public-servants
HTTP Method GET
IP Address 2600:1f28:365:80b0:df5b:d786:dbc3:932e
Is AJAX Request? no
Is CLI Request? no
Is Secure Request? yes
User Agent CCBot/2.0 (https://commoncrawl.org/faq/)
No $_GET, $_POST, or $_COOKIE Information to show.

Headers

Header Value
Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding zstd, br, gzip
Accept-Language en-US,en;q=0.5
Host vorkady.com
User-Agent CCBot/2.0 (https://commoncrawl.org/faq/)
If-Modified-Since Mon, 11 May 2026 06:11:14 GMT
Response Status 200 - OK

Headers

Header Value
Content-Type text/html; charset=UTF-8
  1. FCPATH/index.php
  2. APPPATH/Config/Paths.php
  3. SYSTEMPATH/Boot.php
  4. APPPATH/Config/Constants.php
  5. SYSTEMPATH/Config/DotEnv.php
  6. APPPATH/Config/Boot/development.php
  7. APPPATH/Common.php
  8. SYSTEMPATH/Common.php
  9. SYSTEMPATH/Config/AutoloadConfig.php
  10. APPPATH/Config/Autoload.php
  11. SYSTEMPATH/Modules/Modules.php
  12. APPPATH/Config/Modules.php
  13. SYSTEMPATH/Autoloader/Autoloader.php
  14. SYSTEMPATH/Config/BaseService.php
  15. SYSTEMPATH/Config/Services.php
  16. APPPATH/Config/Services.php
  17. APPPATH/Config/Optimize.php
  18. SYSTEMPATH/Autoloader/FileLocator.php
  19. SYSTEMPATH/Autoloader/FileLocatorInterface.php
  20. SYSTEMPATH/Config/Factories.php
  21. SYSTEMPATH/Config/Factory.php
  22. SYSTEMPATH/Config/BaseConfig.php
  23. APPPATH/Config/Exceptions.php
  24. SYSTEMPATH/ThirdParty/PSR/Log/LogLevel.php
  25. SYSTEMPATH/Debug/Exceptions.php
  26. SYSTEMPATH/API/ResponseTrait.php
  27. SYSTEMPATH/ThirdParty/Kint/init.php
  28. SYSTEMPATH/ThirdParty/Kint/Utils.php
  29. SYSTEMPATH/ThirdParty/Kint/Kint.php
  30. SYSTEMPATH/ThirdParty/Kint/FacadeInterface.php
  31. SYSTEMPATH/ThirdParty/Kint/init_helpers.php
  32. APPPATH/Config/Kint.php
  33. APPPATH/Config/ContentSecurityPolicy.php
  34. SYSTEMPATH/HTTP/ContentSecurityPolicy.php
  35. APPPATH/Config/App.php
  36. SYSTEMPATH/ThirdParty/Kint/Renderer/RichRenderer.php
  37. SYSTEMPATH/ThirdParty/Kint/Renderer/AbstractRenderer.php
  38. SYSTEMPATH/ThirdParty/Kint/Renderer/ConstructableRendererInterface.php
  39. SYSTEMPATH/ThirdParty/Kint/Renderer/RendererInterface.php
  40. SYSTEMPATH/ThirdParty/Kint/Renderer/AssetRendererTrait.php
  41. SYSTEMPATH/ThirdParty/Kint/Renderer/CliRenderer.php
  42. SYSTEMPATH/ThirdParty/Kint/Renderer/TextRenderer.php
  43. SYSTEMPATH/Helpers/kint_helper.php
  44. SYSTEMPATH/Helpers/url_helper.php
  45. SYSTEMPATH/CodeIgniter.php
  46. APPPATH/Config/Cache.php
  47. SYSTEMPATH/Cache/CacheFactory.php
  48. SYSTEMPATH/Cache/Handlers/FileHandler.php
  49. SYSTEMPATH/Cache/Handlers/BaseHandler.php
  50. SYSTEMPATH/Cache/CacheInterface.php
  51. SYSTEMPATH/Helpers/filesystem_helper.php
  52. SYSTEMPATH/Cache/ResponseCache.php
  53. SYSTEMPATH/Debug/Timer.php
  54. SYSTEMPATH/HTTP/IncomingRequest.php
  55. SYSTEMPATH/HTTP/Request.php
  56. SYSTEMPATH/HTTP/OutgoingRequest.php
  57. SYSTEMPATH/HTTP/Message.php
  58. SYSTEMPATH/HTTP/MessageTrait.php
  59. SYSTEMPATH/HTTP/MessageInterface.php
  60. SYSTEMPATH/HTTP/OutgoingRequestInterface.php
  61. SYSTEMPATH/HTTP/RequestTrait.php
  62. SYSTEMPATH/HTTP/RequestInterface.php
  63. SYSTEMPATH/Superglobals.php
  64. SYSTEMPATH/HTTP/SiteURIFactory.php
  65. SYSTEMPATH/HTTP/URI.php
  66. SYSTEMPATH/HTTP/SiteURI.php
  67. SYSTEMPATH/HTTP/UserAgent.php
  68. APPPATH/Config/UserAgents.php
  69. SYSTEMPATH/HTTP/Header.php
  70. SYSTEMPATH/HTTP/Method.php
  71. SYSTEMPATH/HTTP/Response.php
  72. SYSTEMPATH/HTTP/ResponseTrait.php
  73. SYSTEMPATH/HTTP/ResponseInterface.php
  74. SYSTEMPATH/Cookie/CookieStore.php
  75. APPPATH/Config/Cookie.php
  76. SYSTEMPATH/Cookie/Cookie.php
  77. SYSTEMPATH/Cookie/CloneableCookieInterface.php
  78. SYSTEMPATH/Cookie/CookieInterface.php
  79. SYSTEMPATH/Events/Events.php
  80. APPPATH/Config/Events.php
  81. APPPATH/Config/Toolbar.php
  82. SYSTEMPATH/Debug/Toolbar.php
  83. SYSTEMPATH/Debug/Toolbar/Collectors/Timers.php
  84. SYSTEMPATH/Debug/Toolbar/Collectors/BaseCollector.php
  85. SYSTEMPATH/Debug/Toolbar/Collectors/Database.php
  86. APPPATH/Config/Database.php
  87. SYSTEMPATH/Database/Config.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. SYSTEMPATH/Router/RouteCollection.php
  94. SYSTEMPATH/Router/RouteCollectionInterface.php
  95. SYSTEMPATH/Router/Router.php
  96. SYSTEMPATH/Router/RouterInterface.php
  97. APPPATH/Config/Routing.php
  98. SYSTEMPATH/Config/Routing.php
  99. SYSTEMPATH/ThirdParty/Escaper/Escaper.php
  100. SYSTEMPATH/ThirdParty/Escaper/EscaperInterface.php
  101. SYSTEMPATH/Helpers/array_helper.php
  102. APPPATH/Config/Filters.php
  103. SYSTEMPATH/Config/Filters.php
  104. SYSTEMPATH/Filters/Filters.php
  105. SYSTEMPATH/Filters/ForceHTTPS.php
  106. SYSTEMPATH/Filters/FilterInterface.php
  107. SYSTEMPATH/Filters/PageCache.php
  108. APPPATH/Config/Routes.php
  109. APPPATH/Services/AppContextService.php
  110. SYSTEMPATH/Database/Database.php
  111. SYSTEMPATH/Database/MySQLi/Connection.php
  112. SYSTEMPATH/Database/BaseConnection.php
  113. SYSTEMPATH/Database/ConnectionInterface.php
  114. APPPATH/Config/Session.php
  115. SYSTEMPATH/Log/Logger.php
  116. SYSTEMPATH/ThirdParty/PSR/Log/LoggerInterface.php
  117. APPPATH/Config/Logger.php
  118. SYSTEMPATH/Session/Handlers/Database/MySQLiHandler.php
  119. SYSTEMPATH/Session/Handlers/DatabaseHandler.php
  120. SYSTEMPATH/Session/Handlers/BaseHandler.php
  121. SYSTEMPATH/ThirdParty/PSR/Log/LoggerAwareTrait.php
  122. SYSTEMPATH/Validation/FormatRules.php
  123. SYSTEMPATH/Session/Session.php
  124. SYSTEMPATH/Session/SessionInterface.php
  125. SYSTEMPATH/I18n/Time.php
  126. SYSTEMPATH/I18n/TimeTrait.php
  127. SYSTEMPATH/Log/Handlers/FileHandler.php
  128. SYSTEMPATH/Log/Handlers/BaseHandler.php
  129. SYSTEMPATH/Log/Handlers/HandlerInterface.php
  130. SYSTEMPATH/Debug/ExceptionHandler.php
  131. SYSTEMPATH/Debug/BaseExceptionHandler.php
  132. SYSTEMPATH/Debug/ExceptionHandlerInterface.php
  133. APPPATH/Views/errors/html/error_exception.php
Memory Usage 2 MB
Peak Memory Usage: 2 MB
Memory Limit: 1536M