Shailesh Chauhan
Shailesh Chauhan

Reputation: 673

Two codeigniter project in localhost when use same time i got session issue

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

Answers (1)

Mohin Mathakia
Mohin Mathakia

Reputation: 334

Just change in config.php:

FROM:

$config['sess_cookie_name'] = 'ci_session';

TO:

$config['sess_cookie_name'] = 'ci_session1';

Upvotes: 3

Related Questions