I\'m using codeigniter as a framework.
Firstly, I use localhost but when I change to my IP address the login function doesn\'t work anymore. I found that th
I have the exact same problem and here's what I do.
First, go to file system/libraries/Session/Session.php.
Comment session_start(); on line 140.
On function _configure, comment few lines under // Security is king
// ini_set('session.use_trans_sid', 0);
// ini_set('session.use_strict_mode', 1);
// ini_set('session.use_cookies', 1);
// ini_set('session.use_only_cookies', 1);
// ini_set('session.hash_function', 1);
// ini_set('session.hash_bits_per_character', 4);
Second, go to file index.php on your root project.
Put, session_start(); below
Hope this helps.