Codeigniter session data lost after redirect

I am using codeigniter 2.1.0.

I am trying to execute the register / login function using the session library in the source code.

The register / login in the session library worked fine for the local host, but when I put it on the air and tried, the session did not work.

My controller login works this way. I check my credentials as soon as I set up my session data and redirect to another page.

$user_data = array(
                   'username'       => $result->user_name,
                   'email'          => $result->user_email,
                   'userid'         => $result->user_id,
                   'role'           => $result->user_role,
                   'login_state'    => TRUE,
                   'lastlogin'      => time(),
               );

$this->session->set_userdata($user_data);           
print_r( $this->session->all_userdata());            
redirect(base_url('dashboard'));

here, when I print all my session data, they print. But on the controller side of the panel, when I try to print session data, they were no longer there.

Any idea why? Thank you in advance.

+7
source share
17 answers

CI 3.x php 7.x

system/library/Session/session.php โ„– 281 ini_set('session.name', $params['cookie_name']); ini_set('session.id', $params['cookie_name']);

+25

, . .

php7.0.

nginx php 5.6. , , . php7.1 , Laravel.

, .

1) //Session/Session.php

2) session_start(), //. sessionn_start().

3) 315, , Security , 351

enter image description here

4) index.php(root index.php)

5) session_start() .

enter image description here

6) . , . , php 7.1, Session.php .

  1. CI - 3.1.1

enter image description here

+23

"edelweiss", , , , .

CI 2.1 , , . Session.php .

, "edelweiss", . Session.php :

<?php  if (!defined('BASEPATH')) exit('No direct script access allowed');
//>  makes dw cs4 happy
/**
* Session class using native PHP session features and hardened against session fixation.
*
* @package     CodeIgniter
* @subpackage  Libraries
* @category    Sessions
* @author      Dariusz Debowczyk, Matthew Toledo
* @link        http://www.philsbury.co.uk/index.php/blog/code-igniter-sessions/
*/
class CI_Session {
    var $flashdata_key     = 'flash'; // prefix for "flash" variables (eg. flash:new:message)
    function CI_Session()
    {
        $this->object =& get_instance();
        log_message('debug', "Native_session Class Initialized");
        $this->_sess_run();
    }
    /**
    * Regenerates session id
    */
    function regenerate_id()
    {
        // copy old session data, including its id
        $old_session_id = session_id();
        $old_session_data = $_SESSION;
        // regenerate session id and store it
        session_regenerate_id();
        $new_session_id = session_id();
        // switch to the old session and destroy its storage
        session_id($old_session_id);
        session_destroy();
        // switch back to the new session id and send the cookie
        session_id($new_session_id);
        session_start();
        // restore the old session data into the new session
        $_SESSION = $old_session_data;
        // update the session creation time
        $_SESSION['regenerated'] = time();
        // session_write_close() patch based on this thread
        // http://www.codeigniter.com/forums/viewthread/1624/
        // there is a question mark ?? as to side affects
        // end the current session and store session data.
        session_write_close();
    }
    /**
    * Destroys the session and erases session storage
    */
    function destroy()
    {
        unset($_SESSION);
        if ( isset( $_COOKIE[session_name()] ) )
        {
            setcookie(session_name(), '', time()-42000, '/');
        }
        session_destroy();
    }
    /**
    * Alias for destroy(), makes 1.7.2 happy.
    */
    function sess_destroy()
    {
        $this->destroy();
    }
    /**
    * Reads given session attribute value
    */
    function userdata($item)
    {
        if($item == 'session_id'){ //added for backward-compatibility
            return session_id();
        }else{
            return ( ! isset($_SESSION[$item])) ? false : $_SESSION[$item];
        }
    }
    /**
    * Sets session attributes to the given values
    */
    function set_userdata($newdata = array(), $newval = '')
    {
        if (is_string($newdata))
        {
            $newdata = array($newdata => $newval);
        }
        if (count($newdata) > 0)
        {
            foreach ($newdata as $key => $val)
            {
                $_SESSION[$key] = $val;
            }
        }
    }
    /**
    * Erases given session attributes
    */
    function unset_userdata($newdata = array())
    {
        if (is_string($newdata))
        {
            $newdata = array($newdata => '');
        }
        if (count($newdata) > 0)
        {
            foreach ($newdata as $key => $val)
            {
                unset($_SESSION[$key]);
            }
        }
    }
    /**
    * Starts up the session system for current request
    */
    function _sess_run()
    {
        session_start();
        $session_id_ttl = $this->object->config->item('sess_expiration');
        if (is_numeric($session_id_ttl))
        {
            if ($session_id_ttl > 0)
            {
                $this->session_id_ttl = $this->object->config->item('sess_expiration');
            }
            else
            {
                $this->session_id_ttl = (60*60*24*365*2);
            }
        }
        // check if session id needs regeneration
        if ( $this->_session_id_expired() )
        {
            // regenerate session id (session data stays the
            // same, but old session storage is destroyed)
            $this->regenerate_id();
        }
        // delete old flashdata (from last request)
        $this->_flashdata_sweep();
        // mark all new flashdata as old (data will be deleted before next request)
        $this->_flashdata_mark();
    }
    /**
    * Checks if session has expired
    */
    function _session_id_expired()
    {
        if ( !isset( $_SESSION['regenerated'] ) )
        {
            $_SESSION['regenerated'] = time();
            return false;
        }
        $expiry_time = time() - $this->session_id_ttl;
        if ( $_SESSION['regenerated'] <=  $expiry_time )
        {
            return true;
        }
        return false;
    }
    /**
    * Sets "flash" data which will be available only in next request (then it will
    * be deleted from session). You can use it to implement "Save succeeded" messages
    * after redirect.
    */
    function set_flashdata($newdata = array(), $newval = '')
    {
        if (is_string($newdata))
        {
            $newdata = array($newdata => $newval);
        }
        if (count($newdata) > 0)
        {
            foreach ($newdata as $key => $val)
            {
                $flashdata_key = $this->flashdata_key.':new:'.$key;
                $this->set_userdata($flashdata_key, $val);
            }
        }
    }
    /**
    * Keeps existing "flash" data available to next request.
    */
    function keep_flashdata($key)
    {
        $old_flashdata_key = $this->flashdata_key.':old:'.$key;
        $value = $this->userdata($old_flashdata_key);
        $new_flashdata_key = $this->flashdata_key.':new:'.$key;
        $this->set_userdata($new_flashdata_key, $value);
    }
    /**
    * Returns "flash" data for the given key.
    */
    function flashdata($key)
    {
        $flashdata_key = $this->flashdata_key.':old:'.$key;
        return $this->userdata($flashdata_key);
    }
    /**
    * PRIVATE: Internal method - marks "flash" session attributes as 'old'
    */
    function _flashdata_mark()
    {
        foreach ($_SESSION as $name => $value)
        {
            $parts = explode(':new:', $name);
            if (is_array($parts) && count($parts) == 2)
            {
                $new_name = $this->flashdata_key.':old:'.$parts[1];
                $this->set_userdata($new_name, $value);
                $this->unset_userdata($name);
            }
        }
    }
    /**
    * PRIVATE: Internal method - removes "flash" session marked as 'old'
    */
    function _flashdata_sweep()
    {
        foreach ($_SESSION as $name => $value)
        {
            $parts = explode(':old:', $name);
            if (is_array($parts) && count($parts) == 2 && $parts[0] == $this->flashdata_key)
            {
                $this->unset_userdata($name);
            }
        }
    }
}
+3

, .

:

$this->load->library('session');
print_r($this->session->all_userdata());
+2

PHP 7 - * SESSION/COOKIE

session/cookie - PHP7 PHP 5.

CodeIgniter @3.1.0 - PHP 7.1 - CodeIgniter.

$this->session->set_userdata(); - . , .


: https://github.com/bcit-ci/CodeIgniter/issues/4830

* , . "dyanakiev 23 2016 " -

" : 3.1.1, . ! ๐Ÿ’ƒ "


. : https://www.codeigniter.com/use.../installation/upgradeing.html

CodeIgniter : https://codeigniter.com/download

* :

codeigniter 3.1.6 - PHP 7.1. *

+2

, ; / ?

"", , .

, @edelweiss :)

+1

( https http localhost) - $config ['cookie_secure'], config.php:

$config['cookie_secure']    = FALSE; // if is not under https, or true if you use https

!

+1

CI 3.1.1. , stackoverflow, . . , . , , / .

:

redirect ('name_of_function_in_same_controller');

:

redirect ('/name_of_controller/name_of_function_in_controller');

. , , . rout.php

+1

$_SESSION , session_start(). , ,

$this- > load- > ( '');

, .

0

, .

db , , ..

-, - .

, Codeigniter ( " , codeigniter " ), .

, , , db - , userdata, , .

, .

0

, . , . . codeigniter wiredesignz hmvc, , htaccess. rewrite

0

- Homestead ( ), CodeIgniter ( ), CI PHP Homestead 6+, :

//Homestead.yaml
    - map: myproject.test
      to: /home/vagrant/Code/myproject
      php: "5.6"

homestead provision.

0

, .

.

0

$config['base_url'] = 'http://localhost/'; $config['base_url'] = 'http://localhost'; $config['base_url'] = 'http://localhost'; /

0

system/libraries/Session/session.php

โ„– 281

ini_set('session.name', $params['cookie_name']); 

ini_set('session.id', $params['cookie_name']);
0

All Articles