Tagged Questions
3
votes
0answers
34 views
PyroCMS / Codeigniter : too many session entries in db
I'm using for a small website the pyrocms / codeigniter combo.
after adding some content, i checked the db and saw that:
is this a normal behaviour? multiple session_ids for one user with the same ...
0
votes
1answer
36 views
How do I search with php sessions using the native_session library in codeigniter
I just found that i can't use PHPSESSIONS straight away in codeigniter so i've downloaded the Native_Sessions lib for Codeigniter.
I have a searchquery for searching postal codes in an database using ...
0
votes
1answer
26 views
Why I can't use sessions in a CodeIgniter hook
I have this code here:
hooks/account.php:
class Account {
public function checkIfLogged() {
if(!$this->session->userdata('logged') ){
...
-1
votes
1answer
60 views
CodeIgniter delete specific session by ID
Need to delete session for specific user (when he was banned). I know that session_id regenerates every 5 minutes. We are not storing sessions in database, probably just session_id for each user. ...
0
votes
0answers
39 views
What is the best approach handling post queries in CodeIgniter using MVC?
My view has a search box (but the question is more general than for this scenario) and when you submit your search query, controller checks your input and displays results with pagination.
Now, to ...
0
votes
1answer
39 views
codeigniter custom session table fields
I want to know if there is any way to define custom fields in the sessions table of CodeIgniter.
By default, CodeIgniter stores session values in the following fields:
`session_id`,
`ip_address`,
...
0
votes
1answer
16 views
Preventing access to subsequent pages not proceeding current
I have a codeigniter MVC setup where a piece of a form exists on one page.
Each time the user clicks the submit button, the same controller loads the next piece of the form under the same url ...
0
votes
2answers
56 views
Codeigniter Session (User data)
I searched on google and found that here at Stack there are several people with similar problems to mine, but none of the answers actually solved my problem. I have an application developed on ...
0
votes
1answer
21 views
Codeigniter session different site
Hi all I have two sites developed in codeigniter. These sites are completely different but the mdoel of user is similar like the login method because I thinked to recycle that code.
The problem is: If ...
0
votes
2answers
69 views
How to build codeigniter login page and session with one controller
Hi. I am having a problem with my sessions, I am new to CodeIgniter, so please be patient with me. Here's my index function:
function index()
{
$username;
$pWord; //assume these two variables ...
0
votes
1answer
63 views
codeigniter session save to database keep updating many times
I have a question. I'm using latest version of CI.
I have currently enabled session to use the database, but there is only one problem with how it works since it tends to update the database every ...
1
vote
1answer
44 views
i want to save both user and admin data on codeigniter session but i cant save both to user_data. so what can i do?
i created a site with admin area and user area using codeigniter. but both admin and user can't log in at same time. because the session user_data is only can use once.
so how can i save another ...
1
vote
2answers
37 views
Codeigniter validation library store errors in session
I am making use of the validation library provided by Codeigniter.
My web application uses sessions and javascript to populate alert message.
Therefore, I want my error message to be in json format.
...
0
votes
0answers
58 views
Codeigniter session variable lose its value after ajax request
I have a problem, when I make a AJAX request to retrieve more data a session variable called is_logued which indicates is the current user is logued in the system lose its value.
I have test it with ...
4
votes
1answer
75 views
Share a SESSION across multiple servers with different domains [duplicate]
I'm having a little problem. I am developing an application in PHP that is divided into modules. Each module is completely independent, is on a separate server and has an own domain. eg:
...
0
votes
0answers
45 views
Using session->set_flashdata causes 502 Bad gateway error
I am getting 502 bad gateway error when ever I use
$this->session->set_flashdata('message', 'Profile updated.');
I am using CodeIgniter on nginx. The code runs fine on localloast(WAMP). If I ...
0
votes
0answers
21 views
NodeJS read cookies exec error
I'm currently creating a notification center with NodeJS and Codeigniter. I'm grabbing the session cookie from my browser.
Like this :
function readCookie(name) {
var nameEQ = name + "=";
...
0
votes
2answers
33 views
codeigniter session from a phone - a new IP for every pageload
I have encountered the following problem. I cannot log in to my system using a phone. There is a range of 4 ip addresses' endings when I use the phone and therefore system/libraries/Session.php line ...
-1
votes
0answers
33 views
Codeigniter - Concatenation of Flashdata without request?
I don't think it's possible this way - but before I rearrange my complete code I want you to confirm it. ;o)
I call some different functions in a loop - and in this functions I've tried something ...
0
votes
0answers
46 views
random codeigniter error “cannot modify header information - headers already sent” when refreshing page [duplicate]
I have already read like half a dozen similar questions here, and already double checked that there are no white spaces before <?php or after ?> in my library.
Ok note that I get this error ...
0
votes
2answers
146 views
Codeigniter session variable not working
I'm Using codeigniter frame work and i'm having some problems with session.
in my login form i ask for username and password, then if supplied credentials are valid, then
i put them in to a session ...
-3
votes
1answer
41 views
Session data lost so fast and rapidly in codeigniter
I have build a web application using codeignitet. It's about 200 users in my application. When user login, it success, but the session data just keep about one minutes and then kills automatically.
I ...
1
vote
2answers
84 views
CodeIgniter, PHP and reloading the front page when session is destroyed
I am trying to create a web page where users should be able to register, log in and log out. This all works fine, however, a user is required to press the Sign Out button twice for the page to reload, ...
-3
votes
1answer
66 views
Is it good to use session data (role) to set user management in codeigniter web application?
In my web application using codeigniter, I stored role data that I have query from database before in session.
$role = $this->session->userdata('role');
And in every model or controller, i ...
0
votes
1answer
110 views
Session data lost automatically without click logout in codeigniter
I have a web application using codeigniter with users about 200. If about 100 users login to the system at the same time, sometimes the user logout automatically or redirect to the login page without ...
0
votes
1answer
95 views
Codeigniter Cms Login Issue
I've been following this tutorial by Envato on Tutplus: https://tutsplus.com/course/build-a-cms-in-codeigniter/
I'm at the part at which were are securing the login and i've followed the tutorial ...
0
votes
1answer
59 views
CodeIgniter adding session variable to an already defined “named session”
I already created as session named "verified" as shown below (in my login controller):
foreach($result as $row)
{
$sess_array = array(
'id' => $row->memberid, //Session field: id.
...
0
votes
1answer
39 views
Saving Sessions In Database
In LAMP environment I heard many times that it is best to save your sessions to a database security-wise(Saw it in a Codeigniter tutorial) .
Any thoughts on why this is true ? What is the difference ...
0
votes
2answers
59 views
isset() on codeigniter objects
How can I achieve something that looks like:
if (isset($this->session->flashdata('user_profile'))) {}
without:
Fatal error: Call to a member function flashdata() on a non-object in ...
The ...
0
votes
1answer
51 views
Codeigniter cache page
I have a site developed in codeigniter.
In the page search I have a form that when I compile It I send a request to a servere with CURL and return me an xml.
This query and the print date is about ...
0
votes
2answers
63 views
Expire session automatically in Codeigniter Native session
I need to keep a session alive for 30 minutes and then destroy it there is no action/activity within 30 minutes. I am using codeigniter native session. I added expiration time in config file such as:
...
0
votes
3answers
56 views
Codeigniter. Controller cannot receive session data
I set session successfully as output profiler show me session name and value.
But when I POST data controller cannot receive session data.
Library is loaded, $config['sess_expire_on_close'] = TRUE ...
0
votes
1answer
34 views
codeigniter session config file
there are 2 values in the config file for codeigniter session which i do not fully understand and hope someone can enlighten me, thanks.
# the number of SECONDS you want the session to last.
# by ...
-1
votes
3answers
68 views
codeigniter session data `all_userdata` and `set_userdata` [closed]
I have the below codeigniter code in my app that is working 100% but I don't know why.
part of my controller syntax
if($this->input->post()){
$data = array(
'customer' ...
2
votes
1answer
80 views
What is user_data in CodeIgniter session used to?
When i in CodeIgniter run var_dump($this->session->all_userdata()); it prints
array (size=5)
'session_id' => string '3403084ad9f5e2582a8d9269ceb68fb7' (length=32)
'ip_address' => ...
0
votes
1answer
31 views
Start session after destroying it in Codeigniter
In my program I am making sure that the previous user is logged out by destroying its session before logging in the next one, but after destroying the session with $this->session->sess_destroy() ...
0
votes
0answers
26 views
sessions with codeigniter and phpbb3
I have a web made with Codeigniter and now I need to use phpbb. What I exactly need, and I don't know how to do it, is to get phpbb session from my codeigniter controller in order to have username and ...
0
votes
3answers
124 views
Why session expires automatically with codeigniter ? if use ajax colling on webpage [duplicate]
I am new comer with php codeigniter session. i have a issue about session expiration on my site.
I am using ajax coll for laoding advertizing div on our site page and also add to cart feature ...
0
votes
1answer
28 views
Preloading session variables and db interaction code igniter
I'm preloading the sessions library in code igniter as my site needs a few sessions vars on most pages. I need to do the following, but don't know what the best way is to do this (ie: where to put the ...
0
votes
0answers
61 views
storing data in session codeigniter always changed
I have problem storing captcha_word in session code igniter
I store the captcha value using following
$this->session->set_userdata(array(
'captcha_word' => $cap['word'],
'captcha_time' ...
0
votes
2answers
83 views
PHP flash message appear again when back
My web application(Codeigniter) will have flash message done by PHP session flash.
But currently I found that the flash message appear again when pressing the back button of the browser.
I want to ...
0
votes
0answers
42 views
Effectively maintain sessions across multiple domains
I've been reading about this and experimenting for a while, but have still haven't found an approach that works the way I'd like.
Very soon we are allowing our users to point their own domains at ...
0
votes
1answer
85 views
Why codeigniter session expires frequently ? also user is active on site
I'm using codeigniter for my app. development.
These are the session settings.. i'm using DB session
$config['sess_cookie_name']= 'ci_session';
$config['sess_expiration']= 7200;
...
0
votes
1answer
45 views
Encryption key while using Session Class in Codeigniter [duplicate]
When I auto-load session library from autoload.php in Codeigniter, following error is displayed in browser:
"In order to use the Session class you are required to set an encryption key in your config ...
0
votes
1answer
84 views
why not session data is stored in table duration do login in site?
I am New Comer in PHP with MVC Codeigniter Framework.
I have a issue about session storing in table(ci_sessions) with codeigniter.and i have also set config.php file like-
$config['sess_cookie_name'] ...
1
vote
2answers
107 views
How to save session data in table without getting expired session? [duplicate]
I am new for php with codeigniter. I have a issue about php session with codeigniter mvc framework. When I have used table(ci-sessions) to store session data when I can not login in our site due to ...
0
votes
1answer
76 views
How to save session data in table without get expired session?
I am new for php with codeigniter. I have a issue about php session with codeigniter mvc framework.
When I have used table(ci-sessions) to store session data when I can not login in our site due to ...
1
vote
1answer
45 views
Remove item from session info
I am writing this project with CodeIgniter, where you can add and remove items from your bucket, like an internet shop.
I have an array inside my session class, what I'm trying to do is to search the ...
4
votes
2answers
108 views
Same network users use same session
There is a problem that I can not understand when working with Codeigniter Session Library. Same network users use same session (We work with a big company, and they said me this: When anybody logged ...
0
votes
1answer
158 views
codeigniter - store post data in session and display in view
I have a codeigniter form that users populate. on submission the inputs are posted to an array. this array is then displayed on the new view that is loaded as variables.
My issue is that if I refresh ...






