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?

link|improve this question

67% accept rate
Don't forget to accept an answer, Mr. Moo! :-) – aclark Jun 16 '11 at 14:22
feedback

2 Answers

up vote 2 down vote accepted

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)

link|improve this answer
Configuring PAS is the better approach here. – Laurence Rowe Jun 15 '11 at 18:55
feedback

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.

link|improve this answer
This is what I was wondering about, thanks – aclark Jun 15 '11 at 13:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.