CodeIgniter session class not working in Chrome

前端 未结 10 1636
别那么骄傲
别那么骄傲 2020-12-01 13:36

I have created a login system in codeigniter project, which is working fine in Firefox but doesn\'t work in Chrome, data fetch and set for session but when this code redirec

10条回答
  •  心在旅途
    2020-12-01 13:49

    I changed the sess_match_useragent param to false in the config.php

    $config['sess_match_useragent'] = FALSE;
    

    And the problem with google chrome was resolved.

提交回复
热议问题