Welcome Guest, Not a member yet? Register   Sign In
Subdomain overwriting session [SOLVED]
#1

[eluser]Unknown[/eluser]
Hi,

I have 2 codeigniter installations, 1 on mydomain.com another on sub.mydomain.com

I am trying to get sub.mydomain.com to be able to access the CI session created by mydomain.com. I have edited the cookie section of both config files to

Code:
$config['cookie_prefix'] = "";
$config['cookie_domain'] = ".mydomain.com";
$config['cookie_path']  = "/";
$config['cookie_secure'] = FALSE;

Now if I go to mydomain.com setting the session and then go to sub.mydomain.com it seems to overwrite the session with a new one rather than being able to read from the existing session.

Am I missing something here?

Thanks a lot!
Martin



EDIT:

This was driving me crazy for hours but the solution (as usual) was simple. I had forgotten to make sure $config['encryption_key'] was the same for both applications!

Working great now




Theme © iAndrew 2016 - Forum software by © MyBB