CodeIgniter Forums
CI session not work with Opera 9.63? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: CI session not work with Opera 9.63? (/showthread.php?tid=14417)

Pages: 1 2


CI session not work with Opera 9.63? - El Forum - 01-02-2009

[eluser]ezra_tibuludji[/eluser]
Opera 9.63 reject CI cookie if
Code:
$config['sess_expiration'] > 7200

But if you add this to header it will working
Code:
$this->output->set_header('P3P: CP="CAO PSA OUR"');

I testing with Bamboo Invoice and other application was build with CI framework and the result are not work. But the other application with native php session is working.

I can confirm this bug on Opera 9.63 under Ubuntu machine. Does anyone have a same problem with me?

NB: This bug not affected with Opera version under 9.63 and Firefox 3.0 browser.

That is CI bug or Opera bug?

Sorry for my english :red:


CI session not work with Opera 9.63? - El Forum - 01-02-2009

[eluser]Derek Allard[/eluser]
I can confirm that Opera 9.63 works for me the "stock" unmodified sessions library and settings from BambooInvoice for me. You have any anti-spyware or firewall or other stuff going on? Are you behind a proxy? Does this problem still happen in CI outside of Bamboo?


CI session not work with Opera 9.63? - El Forum - 01-03-2009

[eluser]ezra_tibuludji[/eluser]
Quote:You have any anti-spyware or firewall or other stuff going on?
Maybe no, I use Ubuntu 8.04 for development
Quote:Are you behind a proxy?
No, I use localhost for development
Quote:Does this problem still happen in CI outside of Bamboo?
Yes, all my website was build with CI.


CI session not work with Opera 9.63? - El Forum - 01-03-2009

[eluser]Derek Allard[/eluser]
Could you try playing with cookie encryption, ip matching, etc. This seems to be a local issue, or else an issue with Opera on Linux?


CI session not work with Opera 9.63? - El Forum - 01-03-2009

[eluser]Jonathon Hill[/eluser]
Could be related, I don't know, but I went in to work to continue development on an in-house CI app and I mysteriously all-of-a-sudden could no longer log in using Opera 9.6. Could be a bug that gets triggered when a session has expired?

I tried clearing my cache, deleting cookies, and rebooting but nothing worked. I was able to log in using FF3.


CI session not work with Opera 9.63? - El Forum - 01-09-2009

[eluser]Gerben van Eck[/eluser]
Do you have the CI site/application running in a website with frames? I think I recall that header as a IE cookie fix for websites using frames. Could be that Opera has a similar issue.


CI session not work with Opera 9.63? - El Forum - 01-09-2009

[eluser]Jonathon Hill[/eluser]
[quote author="Gerben van Eck" date="1231526454"]Do you have the CI site/application running in a website with frames? I think I recall that header as a IE cookie fix for websites using frames. Could be that Opera has a similar issue.[/quote]

Frames!? Goodness no.


CI session not work with Opera 9.63? - El Forum - 01-09-2009

[eluser]Gerben van Eck[/eluser]
Tested using Opera 9.63 on Debian 5.0 (Lenny I think...), working perfectly.
I run a session system that is "based on" the CI system, the cookie stuff is the same.
Might have something to do with the cookie_prefix,cookie_domain or cookie_path settings?


CI session not work with Opera 9.63? - El Forum - 01-11-2009

[eluser]ezra_tibuludji[/eluser]
I think this is an individual error was couse with my configuration or else.

Thank you for everyone who respond my thread. :-)


CI session not work with Opera 9.63? - El Forum - 03-19-2009

[eluser]Unknown[/eluser]
Rather old post , but I have same problem with opera 9.64 and 9.60 on Suse.

Cookie settings are default:
$config['cookie_prefix'] = "";
$config['cookie_domain'] = "";
$config['cookie_path'] = "/";

Basically cookies are working, but not for my CI application.
Session is working with Firefox.

Any ideas?