Message: ini_set(): A session is active. You cannot change the session module's ini settings at this time

前端 未结 7 1432
误落风尘
误落风尘 2020-12-20 14:00

I created a login page with codeigniter,but i get the php message.

Message: ini_set(): A session is active. You cannot change the session module\'s ini setting

7条回答
  •  生来不讨喜
    2020-12-20 14:33

    The message means that you have started a session with session_start() in which further down in the code you are using ini_set() to manipulate the session module. If you are manipulating the session module, it should be done before a session is started and active.

提交回复
热议问题