自动创建codeigniter会话表

时间:2014-09-24 09:39:18

标签: php codeigniter session

如何自动创建codeigniter会话表? 当我在我的控制器构造函数中使用creator函数时,当会话表不存在时,我看到codeigniter错误。我的代码是:

function admin() { 
parent::__construct();
ob_start();
if(!$this->db->table_exists('session'))//for `first time` run.
    $this->utilmodel->create_session_table(); //this function create session table with CI structure
ob_end_clean();
$this->load->library('session'); 
... 
}

我明显的错误是:

Error Number: 1146    
Table 'dbs.session' doesn't exist

INSERT INTO `session` (`session_id`, `ip_address`, `user_agent`,
`last_activity`, `user_data`) VALUES
('0a78608576684ebc2c0050b8f4810f', '127.0.0.1', 'Mozilla/5.0
(Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0
AlexaToolbar/alxf-2.21', 1001550875, '')

Filename: C:\wamp\www\folder\system\database\DB_driver.php

Line Number: 330

我完全知道

之后
parent::__construct()

我的错误发生了。

2 个答案:

答案 0 :(得分:0)

只需转到你的phpmyadmin然后运行这个sql查询然后使用session。你必须在数据库中创建ci_session表以使用codeigniter中的会话

CREATE TABLE IF NOT EXISTS  `ci_sessions` (
    session_id varchar(40) DEFAULT '0' NOT NULL,
    ip_address varchar(45) DEFAULT '0' NOT NULL,
    user_agent varchar(120) NOT NULL,
    last_activity int(10) unsigned DEFAULT 0 NOT NULL,
    user_data text NOT NULL,
    PRIMARY KEY (session_id),
    KEY `last_activity_idx` (`last_activity`)
);

答案 1 :(得分:0)

您应该使用hook pre_controller但是有一个问题:CodeIgniter不允许在pre_systempre_controller挂钩中使用DB类,因此您无法使用活动记录安装会话表($this->db->query())。

我知道CodeIgniter指南说

  

pre_controller -   在调用任何控制器之前立即调用。 已完成所有基类,路由和安全检查

但这是 true ...(您可以在其他帖子上阅读:pre_controller hook does not load base classes like docs state?)。

无论如何,您可以手动连接到数据库。这是一个有点肮脏的解决方案,但我不会比较清楚。

这是我自动安装会话表的代码。

<?php

class SessionTableInstaller
{
    public function install() 
    {
        if( $db_config = $this->getDBConfig() ) {

            $db_handle = mysql_connect($db_config['hostname'], $db_config['username'], $db_config['password']);

            if ($db_handle === FALSE) {
                throw new Exception('Cannot connect with MySql server');
            }

            if (mysql_select_db($db_config['database'], $db_handle) === FALSE) {
                throw new Exception('Cannot select database');
            }

            $query = "CREATE TABLE IF NOT EXISTS  `ci_sessions` (
                session_id varchar(40) DEFAULT '0' NOT NULL,
                ip_address varchar(45) DEFAULT '0' NOT NULL,
                user_agent varchar(120) NOT NULL,
                last_activity int(10) unsigned DEFAULT 0 NOT NULL,
                user_data text NOT NULL,
                PRIMARY KEY (session_id) ,
                KEY `last_activity_idx` (`last_activity`)
            ) ENGINE=InnoDB default CHARSET=utf8 ;";

            mysql_query($query);
            mysql_close($db_handle);
        }
    }

    private function getDBConfig()
    {
        require __DIR__ . '/../config/database.php';

        if(!isset($db) || !isset($active_group)) {
            return false;
        }

        $db_config = $db[ $active_group ];
        return $db_config;
    }
}

/* End of file sessionTable.php */
/* Location: ./application/hooks/sessionTable.php */

这是 config / hooks.php

中的代码
$hook['pre_controller'] = array(
    'class'    => 'SessionTableInstaller',
    'function' => 'install',
    'filename' => 'sessionTable.php',
    'filepath' => 'hooks'
);