修改后台重新登陆或超时问题 SESSION 过期时间 修改方法如下

2016-07-07 15:12 来源:www.chinab4c.com 作者:ecshop专家

如何修改后台重新登陆或超时问题?

现在的新版本,对安全打高了一些,
几乎是5分钟没有操作后台就重新登陆,
有没有办法可以改掉
因为只有3分钟,所以我们往往在录入过程中就超时了,所以我们需要增加超时时间。

修改方法如下:
includes/init.php
api/init.php
admin/includes/init.php
wap/includes/init.php

将以上这几个文件中,
找到下面的代码

@ini_set('session.cache_expire',180);

将的180(三分钟) 修改为自己希望的值,例如我修改为

@ini_set('session.cache_expire',600);//10分钟。

如果还不行就请回帖告诉我。

懒人谷 懒人部落 懒人底盘 首个大型懒人文化交流社区 懒人论坛 懒人社区 懒人天空 懒源至生命色彩
http://www.lanrengu.cnhttp://www.lanrengu.comhttp://www.lanrengu.net


回答:
我改完了 出现这个问题了,怎么解决?
Warning: Cannot modify header information - headers already sent by (output started at C:\Uopin\includes\init.php:1) in C:\Uopin\includes\init.php on line 150

Warning: Cannot modify header information - headers already sent by (output started at C:\Uopin\includes\init.php:1) in C:\Uopin\includes\init.php on line 151

Warning: Cannot modify header information - headers already sent by (output started at C:\Uopin\includes\init.php:1) in C:\Uopin\includes\cls_template.php on line 51

这个错误是因为您保存文件时没有删除utf8签名造成的,可以参考一下http://bbs.ecshop.com/viewthread ... mp;extra=#pid120806

前台和后台的init.php 就修改了这2个文件,
@ini_set('session.cache_expire',1800);

后台几分钟没操作就退出了

这个问题我之前也遇到过,不过我之前好像是另一种方法解决的