![]() |
error lost session - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Development (https://forum.codeigniter.com/forumdisplay.php?fid=6) +--- Forum: CodeIgniter 3.x (https://forum.codeigniter.com/forumdisplay.php?fid=17) +--- Thread: error lost session (/showthread.php?tid=66444) |
error lost session - scasabonne - 10-22-2016 Hi, the session is lost from the in the app between method, i do not why, i am working with CI 3.0.6 and php 5.6, my app is in https autoload.php PHP Code: $autoload['libraries'] = array( config.php PHP Code: $config['sess_driver'] = 'files'; class login.php: PHP Code: method 1: ... RE: error lost session - d4jk4 - 10-23-2016 You used $_SESSION is PHP native session Using CI session via $this->session->function_name(), check docs here http://www.codeigniter.com/user_guide/libraries/sessions.html RE: error lost session - Narf - 10-24-2016 (10-23-2016, 07:23 PM)d4jk4 Wrote: You used $_SESSION is PHP native session CI3 hooks into PHP's native sessions, that's not an issue at all. |