03-07-2012, 11:10 AM
[eluser][email protected][/eluser]
[quote author="jenovachild" date="1274005023"]Ok I've resolved the issue I was having after reading a post over at http://ellislab.com/forums/viewthread/100916/
By setting my cookie_domain option to the name of my domain, it allowed me to save sessions (because CI uses cookies to save the session, and this server must require you to explicitly outline the cookie domain)
So for anyone else having troubles like this, What fixed the problem:
Change to
[/quote]
This thread also helped me because i couldn't login to my admin panel using sessions on a computer with IE9, i dont know if i was working on compatibility mode or something but i was working well on my computer, then i tried on a different one and didn't let me login until i added my domain name
Thanks !
[quote author="jenovachild" date="1274005023"]Ok I've resolved the issue I was having after reading a post over at http://ellislab.com/forums/viewthread/100916/
By setting my cookie_domain option to the name of my domain, it allowed me to save sessions (because CI uses cookies to save the session, and this server must require you to explicitly outline the cookie domain)
So for anyone else having troubles like this, What fixed the problem:
Code:
$config['cookie_domain'] = '';
Change to
Code:
$config['cookie_domain'] = 'darklite.com.au'; // whatever your domain name is
This thread also helped me because i couldn't login to my admin panel using sessions on a computer with IE9, i dont know if i was working on compatibility mode or something but i was working well on my computer, then i tried on a different one and didn't let me login until i added my domain name
Thanks !