Welcome Guest, Not a member yet? Register   Sign In
Can session autoload?
#1

Unfortunately what loved a Codeigniter earlier now for was lost - documentation very bad Huh
I create new project on CI 4
How i can autoload session
app/Config/Autoload.php
Code:
$psr4 = [
            'Config'      => APPPATH . 'Config',
            APP_NAMESPACE => APPPATH,                // For custom namespace
            'App'         => APPPATH,                // To ensure filters, etc still found,
            'Session'     => SYSPATH . 'Session',
            
        ];
Result - Warning: Use of undefined constant SYSPATH - assumed 'SYSPATH' (this will throw an Error in a future version of PHP)
Help
Reply
#2

(This post was last modified: 05-16-2019, 04:11 AM by rmcdahal.)

You can load session as


Code:
$session = \Config\Services::session($config);


in BaseController
Reply
#3

I don't use BaseController, i wont load session library in autoload, construction $session = \Config\Services:Confusedession($config) - not work in app/Config/Autoload.php
Reply
#4

The BaseController is intended to be the mechanism for providing the equivalent of autoloading from CI3 ... https://codeigniter4.github.io/userguide...oller.html

Your first post above is trying to create a Sessions namespace, which is not provided for in the framework.

CI4's app/Config/Autoload is meant to tell the PHP class loader where to find source code, and not to preload components for a request.
Reply




Theme © iAndrew 2016 - Forum software by © MyBB