Reputation: 673
We have issue of two different project with session in Codeigniter. In localhost server when one codeigniter project already running and after that when second project start, at that time already running project session destroy.
So, we need to help for that, what is reason behind this issue ?
Upvotes: 0
Views: 349
Reputation: 334
Just change in config.php:
FROM:
$config['sess_cookie_name'] = 'ci_session';
TO:
$config['sess_cookie_name'] = 'ci_session1';
Upvotes: 3