Unable To Grant Read-Write Privilege To Apache Group

Still need help?

The Atlassian Community is here for you.

Ask the community

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

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.