How to enable full repository access on Alfresco Share

In a tomcat installation, edit tomcat/shared/classes/alfresco/web-extension/share-config-custom.xml file.

Look for RepositoryLibrary condition:

<config evaluator="string-compare" condition="RepositoryLibrary" replace="true">
<!--
Whether the link to the Repository Library appears in the header component or not.
-->
<visible>false</visible>

<!--
Root nodeRef for top-level folder.
-->
<root-node>alfresco://company/home</root-node>

<!--
Whether the folder Tree component should enumerate child folders or not.
This is a relatively expensive operation, so should be set to "false" for Repositories with broad folder structures.
-->
<tree>
<evaluate-child-folders>false</evaluate-child-folders>
</tree>
</config>

And modify visibility to true:

<visible>true</visible>


This works on Alfresco Enterprise 3.2R and above.

No hay comentarios: