Unable To Grant Read-Write Privilege To Apache Group
Symptoms
Specifying read-write privileges to a group, when integrating Crowd with Apache doesn't work.
Cause
The Crowd Apache Connector doesn't consider rw a valid option.
Resolution
Since read-write is the default privilege, you can simply remove ":r" from the end of the group name for read-write privileges to work.
<Location>
.
.
.
PerlAuthzHandler Apache::CrowdAuthz
PerlSetVar CrowdAllowedUsers johnh,kevinr
PerlSetVar CrowdAllowedGroups developers,crowd-administrators,customers:r
.
.
.
</Location>
To
<Location>
.
.
.
PerlAuthzHandler Apache::CrowdAuthz
PerlSetVar CrowdAllowedUsers johnh,kevinr
PerlSetVar CrowdAllowedGroups developers,crowd-administrators,customers
.
.
.
</Location>
Last modified on Nov 21, 2012
Powered by Confluence and Scroll Viewport.