具有多个网站的CodeIgniter ion_auth

时间:2013-04-13 10:21:11

标签: php codeigniter authentication ion-auth

我有两个网站并使用ion auth作为登录系统

CI结构如下:

CI_BASE
    - system
    - application
        - site1
            - application
                - config
                - controllers
                - view
                - ...
        - site2
            - application
                - config
                - controllers
                - view
                - ...

现在我想使用site1作为主要成员页面

但是site2也可以读取site1会话并将数据更新到服务器

site1 domain are: http://1.mysite.com/

site2 domain are: http://2.mysite.com/

如何使用相同的身份验证连接两个网站?

1 个答案:

答案 0 :(得分:1)

虽然不是一个好的做法,但数据库(如果使用它)和会话配置必须相同。

文件:site1 / application / config.php,site2 / application / config.php

$config['sess_cookie_name'] = 'site_cookie'; // Important! Must be the same name in both sites
$config['sess_expiration'] = 7200;
$config['sess_expire_on_close'] = FALSE;
$config['sess_encrypt_cookie'] = TRUE;
$config['sess_use_database'] = TRUE; // If you work with database
$config['sess_table_name'] = 'sessions'; // Important! Must be the same table
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = TRUE;
$config['sess_time_to_update'] = 300;

其余部分适用于您的界面和前端。