Python/Pylons - 会话处理 - 用户会话不再活动

发布于 2024-11-08 06:16:20 字数 293 浏览 0 评论 0原文

我在我的项目中使用 Pylons 进行会话处理。如果用户会话不再处于活动状态,用户会在 FireBug 上收到 500 服务器错误。现在我想通知用户此会话处于非活动状态,他必须再次登录。

我找不到在哪里检查会话并生成 500 错误。有人有想法吗?

我对会话控制器使用默认的 Pylons 设置 (docs.PylonsProject)

I use Pylons for the Session Handling on my Project. If an user session is not active anymore, the user get a 500 Server Error on FireBug. Now i want inform the user that this session is inactive and that he had to login again.

I can't find where the Session is checked and the 500 Error is generated. Has someone an idea?

I use the default Pylons Settings for my Sessioncontroller (docs.PylonsProject)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

好倦 2024-11-15 06:16:21

如果您使用的是 pylon,则您可以编写自己的身份验证代码(或者如果您使用诸如 repoze who&what 之类的东西,则至少修改它)。所以你应该检查你的代码,你把返回 500 错误的代码块放在哪里了。

顺便说一句,我看到您发布了来自 pylonsproject 的链接。 pylonsproject != pylons.

因此,如果您正在使用金字塔(并且您认为您正在使用塔架),您还编写了返回 500 错误的代码。您应该寻找名为“AuthenticationPolicy”之类的类。我在 MYPROJECT/resources.py 中有我的。那里有一个方法“unauthenticated_userid”。你应该看看那里。

如果您发布了您的项目结构,我可以为您提供更多帮助。

If you are using pylons you wrote your own auth code (or at least modify it if you use something like repoze who&what). so you should check your code where did you put that chunk of code that returns 500 Error.

btw i saw that you posted a link from pylonsproject. pylonsproject != pylons.

so if you are using pyramid (and you think you are using pylons) you also wrote a code that returns 500 Error. you should look for class called something like "AuthenticationPolicy". i have my in MYPROJECT/resources.py. there you have a method "unauthenticated_userid". you should look there.

if you posted your project structure i could help you more.

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