Configure access by editing accessrights.xml

You can configure access to IXIASOFT CCMS functions by editing the accessrights.xml file directly.

Note: IXIASOFT recommends that you configure access rights using the Access Manager window instead of updating them directly in the accessrights.xml file.
Note: You should make these configuration changes in the Test environment and test them before copying them to the Production environment. In a dedicated SaaS deployment, after testing the changes, ask IXIASOFT Customer Support to copy the changes to the Production environment.
  1. Expand the Content Store's Repository node and browse to /system/conf to locate the accessrights.xml file.
  2. Right-click accessrights.xml and select Check Out from the menu.
  3. Open the file in an XML editor.
  4. Locate the action you want to configure, which will be inside a <method> element.
    Note: If the action is not listed in the accessrights.xml file, use the Access Manager to specify the access rights for this action.
    Ensure the method type is "front-end".
    <method name="Edit" type="front-end">
  5. To set up conditions for the action, locate the <conditionset> element.
    <conditionset operator="any"> <condition> 
    Note: The <conditionset> operator is always "any", meaning that the access rights will apply for the selected action when any specified condition is true.
    1. Enter the document type inside the <type> element.
    2. Enter the applicable statuses for the document type inside the <statuses> element.
      In the example below, the action will apply to Project document types, of all statuses.
      <current> 
      <type name="project"> <statuses> <status>Project:*</status> </statuses> </type> 
      </current>
  6. Inside the <users> element, use the <roles> and <groups> elements to set up users for the action, document type, and statuses:
    <users>
       <groups>
          <group name="Administrators"/>
       </groups>
       <roles>
          <role name="Project coordinator"/>
       </roles>
    </users>
    Note: The role and group names you enter must correspond precisely to those you configured previously.
  7. Repeat from Step 4 to configure additional actions.
  8. Save, close, and check in the accessrights.xml file.
  9. Inform users of the changes.
    The changes will be applied automatically once users close and then reopen their CCMS Desktop. Users can also apply the changes without restarting their CCMS Desktop by clicking IXIASOFT CCMS > Synchronize Configuration. Additionally, refresh IXIASOFT CCMS Web so that users will see the change reflected there.