How do I set session timeout of greater than 30 minutes

前端 未结 5 1402
攒了一身酷
攒了一身酷 2021-02-02 01:42

Dose anybody know how to set session timeout greater than 30 minutes? these two methods wont work (default to 30 min).




        
5条回答
  •  萌比男神i
    2021-02-02 01:51

    If you want to never expire a session use 0 or negative value -1.

    
        0
    
    

    or mention 1440 it indicates 1440 minutes [24hours * 60 minutes]

    
      1440
    
    

    Session will be expire after 24hours.

提交回复
热议问题