Codeigniterのセッション クラスを使用して Cookie を作成し、セッション情報をデータベースに保存していますが、ブラウザー間で問題が発生しています。Firefox
を除くすべてのブラウザで、すべてが機能しているようです。このサイトは、ユーザーがログインした直後に追い出し続けます。何らかの理由でセッションが設定されないのではないかと思います。
何かアドバイスはありますか?
ウェブサイトはこちら: http://www.nanp.org .
以下のコード:
public function post() {
$this->load->model('rbac/user');
if($user = $this->user->user_by_column(array('email'=>$_POST['email'],'password'=>$_POST['password'],'verified'=>'true'))) {
$this->session->set_userdata(array('user_id'=>$user->user_id));
if($_POST['redirect']!='') {header('Location:'.$_POST['redirect']);}
else {header('Location:members/dashboard');}
}
else {
$this->data['php_error'] = 'Incorrect email or password.';
}
}
これは私のセッション構成情報です:
$config['sess_cookie_name'] = 'nanpsession';
$config['sess_expiration'] = 2628000;
$config['sess_expire_on_close'] = FALSE;
$config['sess_encrypt_cookie'] = TRUE;
$config['sess_use_database'] = TRUE;
$config['sess_table_name'] = 'ci_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = TRUE;
$config['sess_time_to_update'] = 300;
$config['cookie_prefix'] = "";
$config['cookie_domain'] = "";
$config['cookie_path'] = "/";
$config['cookie_secure'] = FALSE;