螳螂超时问题
我已经配置了 Mantis,问题是如果我保持空闲一段时间后,Mantis 就会超时。我一次又一次刷新页面,但它根本不加载 Mantis。每当我重新启动 XAMPP 时,它就会开始正常工作(直到我不闲着)。
以下是我见过的关于过期的一些设置
# token expirations
define( 'TOKEN_EXPIRY', 60 * 60 );
# Default expiration of 60 minutes ( 3600 seconds )
define( 'TOKEN_EXPIRY_LAST_VISITED', 24 * 60 * 60 );
define( 'TOKEN_EXPIRY_AUTHENTICATED', 5 * 60 );
define( 'TOKEN_EXPIRY_COLLAPSE', 365 * 24 * 60 * 60 );
有人可以告诉我如何解决这个超时问题吗?我正在使用“Mantis 1.2.8”。
I have configured Mantis, the thing is after sometime if I stay idle, Mantis sort of timeout. I refresh the page again and again but it does not load Mantis at all. Whenever I restart XAMPP it starts working fine (until I don't sit idle).
Here are some settings that i have seen w.r.t exipration
# token expirations
define( 'TOKEN_EXPIRY', 60 * 60 );
# Default expiration of 60 minutes ( 3600 seconds )
define( 'TOKEN_EXPIRY_LAST_VISITED', 24 * 60 * 60 );
define( 'TOKEN_EXPIRY_AUTHENTICATED', 5 * 60 );
define( 'TOKEN_EXPIRY_COLLAPSE', 365 * 24 * 60 * 60 );
Can someone tell me how to get through this timeout thing whatever it is? I am using "Mantis 1.2.8".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是你需要做的。在authentication_api.php上,您必须像这样评论这部分
,并且可以从mantis论坛找到它。
this is what u need to do. On authentication_api.php you must comment this part like this
and it will work found that from mantis forums.
官方方法是更改配置文件(config_inc.php)。
确保配置文件中有一行类似
$g_reauthentication_expiry = 60*60*2;
例如,管理员需要重新登录 2 小时。The offical way is to change you configuration file (config_inc.php).
Make sure you have a line in config file like
$g_reauthentication_expiry = 60*60*2;
This is for example 2 hours for admin to need re-login.