Problem Session Database, Login time too short |
[eluser]chandrajatnika[/eluser]
This is my setup on config.php Code: $config['sess_cookie_name'] = 'ci_session'; I've ask this before in forum reply but nobody give an answer. Please help me.. Thank you, Best regards
[eluser]chandrajatnika[/eluser]
So it means CI cannot redeclare value of PHP.ini at that time?
[eluser]WanWizard[/eluser]
CodeIgniter doesn't use any PHP native session information. If you loose sessions, it's either because you have a logic error in your code, or you have a concurrency issue. CI's session library can't deal with concurrent requests, so if your application uses ajax calls, and/or allow multiple windows to be open, and/or uses file uploads that may take a while, you have to look for some fixes. I've posted a Session library replacement that solves most of these issues, use the search. Another option is to be less secure, and disable session id rotation (controlled by the sess_time_to_update setting). Set this to something very high (like 2 years or so), and see I you still have this problem. If this solves it, my library can help you, as leaving it disabled it in a production environment is a security risk.
[eluser]MVUG[/eluser]
[quote author="WanWizard" date="1294866902"]CodeIgniter doesn't use any PHP native session information. If you loose sessions, it's either because you have a logic error in your code, or you have a concurrency issue. CI's session library can't deal with concurrent requests, so if your application uses ajax calls, and/or allow multiple windows to be open, and/or uses file uploads that may take a while, you have to look for some fixes. I've posted a Session library replacement that solves most of these issues, use the search. Another option is to be less secure, and disable session id rotation (controlled by the sess_time_to_update setting). Set this to something very high (like 2 years or so), and see I you still have this problem. If this solves it, my library can help you, as leaving it disabled it in a production environment is a security risk.[/quote] where can I find your session library replacement?
[eluser]vickel[/eluser]
@WanWizard: I've been strugling for a while with CI session problems (see my thread http://ellislab.com/forums/viewthread/177793/). Fisrt I thought I had an AJAX related problem but then I found out that once you have the configuration set to use the database ($config['sess_use_database'] = TRUE ![]()
[eluser]InsiteFX[/eluser]
I have posted this many times on here! If your using CI Database Sessions. Code: <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); InsiteFX
[eluser]WanWizard[/eluser]
A quick visit to the search option would have found it for you: http://ellislab.com/forums/viewthread/13...15/#811009. |
Welcome Guest, Not a member yet? Register Sign In |