CodeIgniter Forums
Matching the User-Agent in the Session Class - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Matching the User-Agent in the Session Class (/showthread.php?tid=42448)

Pages: 1 2 3


Matching the User-Agent in the Session Class - El Forum - 07-01-2011

[eluser]InsiteFX[/eluser]
You also need to change these:
Code:
$config['sess_cookie_name'] = 'ci_session';
// to
$config['sess_cookie_name'] = 'cisession';

Internet Explorer:

1) Menu - click on tools
2) click on Internet options
3) click on the Privacy tab
4) click on the Advanced button
5) First-party cookies and Third-party cookies select Accept radio button
6) Always allow session cookies checkbox should be checked

InsiteFX