螳螂超时问题

发布于 2024-12-22 04:27:40 字数 472 浏览 2 评论 0原文

我已经配置了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乖乖公主 2024-12-29 04:27:40

这就是你需要做的。在authentication_api.php上,您必须像这样评论这部分

$t_login_methods = Array(
    MD5,
//      CRYPT,
    PLAIN,
);

,并且可以从mantis论坛找到它。

this is what u need to do. On authentication_api.php you must comment this part like this

$t_login_methods = Array(
    MD5,
//      CRYPT,
    PLAIN,
);

and it will work found that from mantis forums.

瞎闹 2024-12-29 04:27:40

官方方法是更改​​配置文件(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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文