cancel
Showing results for 
Search instead for 
Did you mean: 

Share 4.2.e User losts Repository link and can't copy/move documents in the repository

icarrara
Champ in-the-making
Champ in-the-making
Using Alfresco CE … I migrated from 4.0 to 4.2.e

In menu bar of Share the non-Admin users don't see the Repository link

I turned to "true" the legacy mode and now the above is solved.

BUT when a User try to copy/move a document inside the Repository, there's no Repository option under Destination !

Please, anyone solved this issue that make Share 4.2.e unusable for users of Repository ?

I think the 4.2.e is a very good release for users of Sites but kick off completely the users of Repository.

Thank you in advance for any help.

Ivano C.
1 REPLY 1

gasg5000
Champ in-the-making
Champ in-the-making
Hello

You may wanna try this


/alfresco-HOME/tomcat/webapps/share/WEB-INF/classes/alfresco/site-webscripts/org/alfresco/modules/documentlibrary/

global-folder.get.html.ftl

Modify
                <input type="radio" id="${el}-recentsites" name="3" value="${msg("button.recentsites")}" />                <input type="radio" id="${el}-favouritesites" name="4" value="${msg("button.favouritesites")}" />                <input type="radio" id="${el}-site" name="0" value="${msg("button.site")}" checked="checked" />                <#if isAdmin = true>                <input type="radio" id="${el}-repository" name="1" value="${msg("button.repository")}" />                </#if>‍‍‍‍‍‍‍‍

To
                <input type="radio" id="${el}-recentsites" name="3" value="${msg("button.recentsites")}" />                <input type="radio" id="${el}-favouritesites" name="4" value="${msg("button.favouritesites")}" />                <input type="radio" id="${el}-site" name="0" value="${msg("button.site")}" checked="checked" />                <input type="radio" id="${el}-repository" name="1" value="${msg("button.repository")}" />‍‍‍‍‍‍