Kohana不会读取数据库中的会话数据

时间:2014-07-28 06:47:53

标签: php session kohana

几分钟前,我将我的应用程序的新版本部署到舞台实例。尝试登录后,我有以下错误:

Session_Exception [ 1 ]: Error reading session data. [Details: Database_Exception [ ]: ~ MODPATH/database/classes/Kohana/Database/MySQL.php [ 108 ] ]

Stackoverflow充满了这些错误,但没有可能的答案帮助了我。

我的数据库配置文件:

 <?php defined('SYSPATH') OR die('No direct access allowed.');

return array
(
'default' => array
(
    'type'       => 'MySQL',
    'connection' => array(
        /**
         * The following options are available for MySQL:
         *
         * string   hostname     server hostname, or socket
         * string   database     database name
         * string   username     database username
         * string   password     database password
         * boolean  persistent   use persistent connections?
         * array    variables    system variables as "key => value" pairs
         *
         * Ports and sockets may be appended to the hostname.
         */
        'hostname'   => '127.0.0.1',
        'database'   => 'MY_DATABASE',
        'username'   => 'MY_USER',
        'password'   => 'MY_PASS',
        'persistent' => FALSE,
    ),
    'table_prefix' => '',
    'charset'      => 'utf8',
    'caching'      => FALSE,
),
'alternate' => array(
    'type'       => 'PDO',
    'connection' => array(
        /**
         * The following options are available for PDO:
         *
         * string   dsn         Data Source Name
         * string   username    database username
         * string   password    database password
         * boolean  persistent  use persistent connections?
         */
        'dsn'        => 'mysql:host=localhost;dbname=kohana',
        'username'   => 'root',
        'password'   => 'r00tdb',
        'persistent' => FALSE,
    ),
    /**
     * The following extra options are available for PDO:
     *
     * string   identifier  set the escaping identifier
     */
    'table_prefix' => '',
    'charset'      => 'utf8',
    'caching'      => FALSE,
),
);

已尝试将主机名更改为localhost - 无效。其他一切看起来都不错。 数据库连接必须正确,因为我的会话表中有一个新条目(因此用户可以读取并将新元组写入会话表)。

应用程序使用session setter / getter。当应用程序调用会话getter时,getter尝试设置一个新实例:

/**
 * Session Getter
 * @return tye
 */
public static function getSession($key = null) {
    // Check, if session is given
    if (!isset($_SESSION)) {
        self::$_session = Session::instance();
    }

    if (!empty($key)) {
        return self::$_session->get($key);
    }
    return self::$_session;
}

Session::instance()SYSPATH/classes/Kohana/Session.php [ 54 ] » Kohana_Session_Database->__construct(arguments)

中执行以下代码
 //  Create a new session instance
 Session::$instances[$type] = $session = new $class($config, $id);

Argument Dump $config

array(4) (
"group" => string(7) "default"
"table" => string(8) "sessions"
"gc" => integer 500
"columns" => array(3) (
    "session_id" => string(10) "session_id"
    "last_active" => string(11) "last_active"
    "contents" => string(8) "contents"
)
) 

Argument Dump $id

NULL

以下函数产生错误(从未修改过!):

    /**
     * Select the database
     *
     * @param   string  $database Database
     * @return  void
     */
    protected function _select_db($database)
    {
            if ( ! mysql_select_db($database, $this->_connection))
            {
                    // Unable to select database
                    throw new Database_Exception(':error',
                            array(':error' => mysql_error($this->_connection)),
                            mysql_errno($this->_connection));
            }

            Database_MySQL::$_current_databases[$this->_connection_id] = $database;
    }

该应用程序在我的本地系统上正常运行。所以我认为它可能是php.ini中的一个错误。这就是为什么我尝试在我的index.php

中通过ini_set设置以下内容的原因
    ini_set('session.auto_start', 0);

没有任何成功..

2 个答案:

答案 0 :(得分:0)

尝试在bootstrap文件中设置默认会话适配器。

Session::$default = 'database';

答案 1 :(得分:0)

这种情况可能有多种原因。 Kohana用它自己的通用异常无助地伪装了实际的异常。我建议暂时将原始异常抛出到catch块中,看看它到底发生了什么。

http://kohanaframework.org/3.3/guide-api/Session#read

在我的情况下,它来自关于&#34; mysql&#34;的弃用警告。并且需要&#34; mysqli&#34;或&#34; pdo&#34;。因为,我忘记将我的MAMP PHP模式返回到单个PHP版本。