How can I increase session time in codeigniter?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I am new in codeigniter. I wanna change $config['sess_expiration'] default value but don't working when ı set sess_expiration value as another value. For example I set it value as 2 and I was thinking will be session expired after 2 second but it don't be it. I tried many available fix but I can't get any result. My config settings as:
$config['sess_driver'] = 'files';
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
$config['sess_save_path'] = NULL;
$config['sess_match_ip'] = FALSE;
$config['sess_time_to_update'] = 300;
$config['sess_regenerate_destroy'] = FALSE;
I don't think to need ci_sessions table for I don't use sess_use_database in my config settings. What should I do?
Edit:
My codeigniter version 3.1.0. As far as I can see this version's session library is not containing sess_read() or sess_update() methods or sess_expiration class variable.
codeigniter session session-timeout expired-sessions
add a comment |
I am new in codeigniter. I wanna change $config['sess_expiration'] default value but don't working when ı set sess_expiration value as another value. For example I set it value as 2 and I was thinking will be session expired after 2 second but it don't be it. I tried many available fix but I can't get any result. My config settings as:
$config['sess_driver'] = 'files';
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
$config['sess_save_path'] = NULL;
$config['sess_match_ip'] = FALSE;
$config['sess_time_to_update'] = 300;
$config['sess_regenerate_destroy'] = FALSE;
I don't think to need ci_sessions table for I don't use sess_use_database in my config settings. What should I do?
Edit:
My codeigniter version 3.1.0. As far as I can see this version's session library is not containing sess_read() or sess_update() methods or sess_expiration class variable.
codeigniter session session-timeout expired-sessions
Possible duplicate of CodeIgniter extend user's session expiration time
– H45H
Jan 3 at 14:40
'$config['sess_save_path']' must be an absolute path. It cannot be null.
– DFriend
Jan 4 at 4:14
I set ci_sessions folder for '$config['sess_save_path']'. I set '$config['sess_save_path']' that: $config['sess_save_path'] = APPPATH . 'ci_sessions/'; but I can not get that result I wanted. @DFriend
– aalicenk
Jan 4 at 5:52
I think I using an old session library. Because My session library don't contain that recommended solution's sess_read() and sess_update() methots. @H45H
– aalicenk
Jan 4 at 6:13
By the way, I cannot see sess_read() and sess_update() methods in codeigniter latest version in session library. @H45H
– aalicenk
Jan 4 at 7:13
add a comment |
I am new in codeigniter. I wanna change $config['sess_expiration'] default value but don't working when ı set sess_expiration value as another value. For example I set it value as 2 and I was thinking will be session expired after 2 second but it don't be it. I tried many available fix but I can't get any result. My config settings as:
$config['sess_driver'] = 'files';
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
$config['sess_save_path'] = NULL;
$config['sess_match_ip'] = FALSE;
$config['sess_time_to_update'] = 300;
$config['sess_regenerate_destroy'] = FALSE;
I don't think to need ci_sessions table for I don't use sess_use_database in my config settings. What should I do?
Edit:
My codeigniter version 3.1.0. As far as I can see this version's session library is not containing sess_read() or sess_update() methods or sess_expiration class variable.
codeigniter session session-timeout expired-sessions
I am new in codeigniter. I wanna change $config['sess_expiration'] default value but don't working when ı set sess_expiration value as another value. For example I set it value as 2 and I was thinking will be session expired after 2 second but it don't be it. I tried many available fix but I can't get any result. My config settings as:
$config['sess_driver'] = 'files';
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
$config['sess_save_path'] = NULL;
$config['sess_match_ip'] = FALSE;
$config['sess_time_to_update'] = 300;
$config['sess_regenerate_destroy'] = FALSE;
I don't think to need ci_sessions table for I don't use sess_use_database in my config settings. What should I do?
Edit:
My codeigniter version 3.1.0. As far as I can see this version's session library is not containing sess_read() or sess_update() methods or sess_expiration class variable.
codeigniter session session-timeout expired-sessions
codeigniter session session-timeout expired-sessions
edited Jan 5 at 8:20
aalicenk
asked Jan 3 at 13:52
aalicenkaalicenk
32
32
Possible duplicate of CodeIgniter extend user's session expiration time
– H45H
Jan 3 at 14:40
'$config['sess_save_path']' must be an absolute path. It cannot be null.
– DFriend
Jan 4 at 4:14
I set ci_sessions folder for '$config['sess_save_path']'. I set '$config['sess_save_path']' that: $config['sess_save_path'] = APPPATH . 'ci_sessions/'; but I can not get that result I wanted. @DFriend
– aalicenk
Jan 4 at 5:52
I think I using an old session library. Because My session library don't contain that recommended solution's sess_read() and sess_update() methots. @H45H
– aalicenk
Jan 4 at 6:13
By the way, I cannot see sess_read() and sess_update() methods in codeigniter latest version in session library. @H45H
– aalicenk
Jan 4 at 7:13
add a comment |
Possible duplicate of CodeIgniter extend user's session expiration time
– H45H
Jan 3 at 14:40
'$config['sess_save_path']' must be an absolute path. It cannot be null.
– DFriend
Jan 4 at 4:14
I set ci_sessions folder for '$config['sess_save_path']'. I set '$config['sess_save_path']' that: $config['sess_save_path'] = APPPATH . 'ci_sessions/'; but I can not get that result I wanted. @DFriend
– aalicenk
Jan 4 at 5:52
I think I using an old session library. Because My session library don't contain that recommended solution's sess_read() and sess_update() methots. @H45H
– aalicenk
Jan 4 at 6:13
By the way, I cannot see sess_read() and sess_update() methods in codeigniter latest version in session library. @H45H
– aalicenk
Jan 4 at 7:13
Possible duplicate of CodeIgniter extend user's session expiration time
– H45H
Jan 3 at 14:40
Possible duplicate of CodeIgniter extend user's session expiration time
– H45H
Jan 3 at 14:40
'$config['sess_save_path']' must be an absolute path. It cannot be null.
– DFriend
Jan 4 at 4:14
'$config['sess_save_path']' must be an absolute path. It cannot be null.
– DFriend
Jan 4 at 4:14
I set ci_sessions folder for '$config['sess_save_path']'. I set '$config['sess_save_path']' that: $config['sess_save_path'] = APPPATH . 'ci_sessions/'; but I can not get that result I wanted. @DFriend
– aalicenk
Jan 4 at 5:52
I set ci_sessions folder for '$config['sess_save_path']'. I set '$config['sess_save_path']' that: $config['sess_save_path'] = APPPATH . 'ci_sessions/'; but I can not get that result I wanted. @DFriend
– aalicenk
Jan 4 at 5:52
I think I using an old session library. Because My session library don't contain that recommended solution's sess_read() and sess_update() methots. @H45H
– aalicenk
Jan 4 at 6:13
I think I using an old session library. Because My session library don't contain that recommended solution's sess_read() and sess_update() methots. @H45H
– aalicenk
Jan 4 at 6:13
By the way, I cannot see sess_read() and sess_update() methods in codeigniter latest version in session library. @H45H
– aalicenk
Jan 4 at 7:13
By the way, I cannot see sess_read() and sess_update() methods in codeigniter latest version in session library. @H45H
– aalicenk
Jan 4 at 7:13
add a comment |
1 Answer
1
active
oldest
votes
i think it is loading from cache or some where else.
so try to set time whenever you set session
where you set session call config and change it
$this->session->sess_expiration = 60; // 1-min
then set your user data
$this->session->set_userdata(' whatever you want ');
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54023653%2fhow-can-i-increase-session-time-in-codeigniter%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
i think it is loading from cache or some where else.
so try to set time whenever you set session
where you set session call config and change it
$this->session->sess_expiration = 60; // 1-min
then set your user data
$this->session->set_userdata(' whatever you want ');
add a comment |
i think it is loading from cache or some where else.
so try to set time whenever you set session
where you set session call config and change it
$this->session->sess_expiration = 60; // 1-min
then set your user data
$this->session->set_userdata(' whatever you want ');
add a comment |
i think it is loading from cache or some where else.
so try to set time whenever you set session
where you set session call config and change it
$this->session->sess_expiration = 60; // 1-min
then set your user data
$this->session->set_userdata(' whatever you want ');
i think it is loading from cache or some where else.
so try to set time whenever you set session
where you set session call config and change it
$this->session->sess_expiration = 60; // 1-min
then set your user data
$this->session->set_userdata(' whatever you want ');
answered Jan 4 at 9:56
Masih AnsariMasih Ansari
3308
3308
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54023653%2fhow-can-i-increase-session-time-in-codeigniter%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Possible duplicate of CodeIgniter extend user's session expiration time
– H45H
Jan 3 at 14:40
'$config['sess_save_path']' must be an absolute path. It cannot be null.
– DFriend
Jan 4 at 4:14
I set ci_sessions folder for '$config['sess_save_path']'. I set '$config['sess_save_path']' that: $config['sess_save_path'] = APPPATH . 'ci_sessions/'; but I can not get that result I wanted. @DFriend
– aalicenk
Jan 4 at 5:52
I think I using an old session library. Because My session library don't contain that recommended solution's sess_read() and sess_update() methots. @H45H
– aalicenk
Jan 4 at 6:13
By the way, I cannot see sess_read() and sess_update() methods in codeigniter latest version in session library. @H45H
– aalicenk
Jan 4 at 7:13