Good morning all,
I just installed Alfresco Community Edition to start. I installed version 6.0a with docker. I've create somes users (10) and every thing is ok until I try to display the list of users I add befor. I have the following error: Error loading items. Can you help me to fix it? Thanks
Solved! Go to Solution.
It's ok now after editing this file: tomcat\webapps\share\WEB-INF\classes\alfresco\share-config.xml and set this property <show-authorization-status> to false, it can be found at line 132.
From
<show-authorization-status>true</show-authorization-status>
To
<show-authorization-status>false</show-authorization-status>
A restart is required for the changes to take place.
For more folow the link below
https://github.com/Alfresco/acs-community-packaging/issues/367
Thanks
Edit/update/build the share image with help of DockerFile so that you don't loose your changes after stopping the containers.
DockerFile instructions:
RUN sed -i 's@<show-authorization-status>true</show-authorization-status>@<show-authorization-status>false</show-authorization-status>@' \ $TOMCAT_DIR/shared/classes/alfresco/web-extension/share-config-custom.xml
Compact version of the abobe:
RUN sed -i 's/\(<show-authorization-status>\)true\(<\/show-authorization-status\)/\1false\2/' $TOMCAT_DIR/webapps/share/WEB-INF/classes/alfresco/share-config.xml
Cheers,
Marco
It's ok now after editing this file: tomcat\webapps\share\WEB-INF\classes\alfresco\share-config.xml and set this property <show-authorization-status> to false, it can be found at line 132.
From
<show-authorization-status>true</show-authorization-status>
To
<show-authorization-status>false</show-authorization-status>
A restart is required for the changes to take place.
For more folow the link below
https://github.com/Alfresco/acs-community-packaging/issues/367
Thanks
Hi @bemous & welcome to Alfresco!
Great news that you resolved your problem & thanks for explaining how you did it - really useful to other users.
Cheers,
Edit/update/build the share image with help of DockerFile so that you don't loose your changes after stopping the containers.
DockerFile instructions:
RUN sed -i 's@<show-authorization-status>true</show-authorization-status>@<show-authorization-status>false</show-authorization-status>@' \ $TOMCAT_DIR/shared/classes/alfresco/web-extension/share-config-custom.xml
Same issue for the V 6.2 CE not the solution ...
Hi @vpan & welcome to Alfresco
As this is a solved question, I would advise you to start a new thread & tell us more about your issue and environment, include some logs if relevant.
Cheers,
Thx,
This is helpfull
another problem is to create users ....
encoded character (before the paddings if any) is a valid base 64 alphabet but not a possible value
Compact version of the abobe:
RUN sed -i 's/\(<show-authorization-status>\)true\(<\/show-authorization-status\)/\1false\2/' $TOMCAT_DIR/webapps/share/WEB-INF/classes/alfresco/share-config.xml
Cheers,
Marco
Ask for and offer help to other Alfresco Content Services Users and members of the Alfresco team.
Related links:
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.