让 Plone 给出正确的 403 Forbidden 错误

发布于 2024-11-15 14:30:19 字数 100 浏览 4 评论 0原文

默认 Plone 行为是当用户尝试访问他或她无权访问的内容时显示登录框。

如何更改此行为,以便显示“未经授权”页面?如何自定义此未经授权的页面以具有自定义文本。 ETC?

Default Plone behavior is to display login box when the user tries to access content for which he or she does not have permission.

How to change this behavior so that instead and Unauthorized page is displayed? How to customize this unauthorized page to have custom texts. etc?

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

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

发布评论

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

评论(3

半夏半凉 2024-11-22 14:30:19

PAS 通过调用任何质询插件来响应 401 未经授权错误,因此为了避免登录表单,请在 acl_users 中停用这些插件。

403 Forbidden 不应导致质疑。然而,在生产模式(但不是调试模式)下,这些错误被隐藏并转换为 404 Not Found。

PAS responds to a 401 Unauthorized error by invoking any challenge plugins, so to avoid the login form deactivate these plugins in acl_users.

A 403 Forbidden should not result in a challenge. However in production mode (but not debug mode) these errors are hidden and they are transformed into 404 Not Found.

自我难过 2024-11-22 14:30:19

自定义此模板:Products.CMFPlone/Products/CMFPlone/skins/plone_login/require_login.py,通过“旧式”皮肤自定义或“新式”jbot 自定义:http://pypi.python.org/pypi/z3c.jbot (参见CMF 对象 部分)

Customize this template: Products.CMFPlone/Products/CMFPlone/skins/plone_login/require_login.py, either via "old style" skin customization or "new style" jbot customization: http://pypi.python.org/pypi/z3c.jbot (see CMF Objects section)

注定孤独终老 2024-11-22 14:30:19

仅供参考,现在还有一个 PAS 插件,仅在 UA 是浏览器时重定向到登录表单:

https://pypi.python.org/pypi/koodaamo.pas.browseronlyredirect/

FYI, there's now also a PAS plugin that only redirects to login form if the UA is a browser:

https://pypi.python.org/pypi/koodaamo.pas.browseronlyredirect/

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