[eluser]Arres[/eluser]
My project's session which is built on CI has suddenly stopped working.
However session is working fine on firefox but not working on chrome and internet explorer 10.
I tried two things which I found online
1. in config changing the ci_sessions to cisessions
2. by commenting the $this->sess_update(); in Session class.
Nothing worked.
I've found this problem with many people before but none of answer is satisfactory.
I tried setting variable and print all values.
below is what i got in firefox
Code:
Array ( [session_id] => 8890abe9ceb778147657afa4fc23af67 [ip_address] => 116.71.176.32 [user_agent] => Mozilla/5.0 (Windows NT 6.1; rv:18.0) Gecko/20100101 Firefox/18.0 [last_activity] => 1361500845 [user_data] => [uid] => 19 [name] => Arslan Afzal [status] => org [photo] => brad41.jpg [membership] => 1 )
and below is what i got in chrome by same operation
Code:
Array ( [session_id] => e4a0eabc6d77606d1bbb9de96e4bb5f3 [ip_address] => 116.71.176.32 [user_agent] => Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.57 Safari/537.17 [last_activity] => 1361499903 [user_data] => )
my variables
[uid] => 19 [name] => Arslan Afzal [status] => org [photo] => brad41.jpg [membership] => 1
are gone in chrome and also in internet explorer.
Please help!