Changes between Version 6 and Version 7 of GuardPlugin
- Timestamp:
- 2011-09-23T21:56:26Z (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GuardPlugin
v6 v7 97 97 * loginError: The error message when user logged in successfully through Shibboleth but do not have an valid account or permission in the application. This is an example to override the [http://api13.cakephp.org/class/auth-component AuthComponent] properties. 98 98 99 === Note === 100 Change the Security.level to low in core.php if using external authentication module 101 {{{ 102 #!php 103 Configure::write('Security.level', 'low'); 104 }}} 99 105 100 106 == Customize Modules == … … 128 134 The new module should be placed in app/libs with the name like: MODULENAME_module.php 129 135 136 == FAQs == 137 138 * When I enabled an external auth module, it goes into a redirection loop after authenticated back from external module. 139 Change the Security.level to low in core.php. If Security.level is high or medium, cakephp checks the referral link. It will invalid the session if referral link is from external source. (http://www.php.net/manual/en/session.configuration.php#ini.session.referer-check) 140 141