CodeIgniter Forums
I Cant Read Session Data Other Controller - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: I Cant Read Session Data Other Controller (/showthread.php?tid=74018)



I Cant Read Session Data Other Controller - akifcan - 07-08-2019

       
hello all use codeigniter with vue.js i create a session in controller session and i can read with defined name session datas but i cant read other pagesĀ 
i only call $this->session->userdata('user')


RE: I Cant Read Session Data Other Controller - mboufos - 07-09-2019

try with $this->session->user;
works for me Smile


RE: I Cant Read Session Data Other Controller - Wouter60 - 07-09-2019

Make sure you autoload the session library in application/config/autoload.php.
Read the documentation about session, because there are different ways to set it up.