05-23-2023 02:52 AM
While accessing the user list from Alfresco Admin Tools, it's not showing the same and throwing error as "Error loading Items"
I'm using Docker Containers for the deployment.
05-31-2023 05:05 AM
Update your share-config-custom with:
<config evaluator="string-compare" condition="Users" replace="true"> <users> <!-- minimum length for username and password --> <username-min-length>2</username-min-length> <password-min-length>3</password-min-length> <show-authorization-status>false</show-authorization-status> </users> <!-- This enables/disables the Add External Users Panel on the Add Users page. --> <enable-external-users-panel>false</enable-external-users-panel> </config>
06-16-2023 07:30 AM
Hi,
i have the same issue. Why cound not solve this issue in the docker image.
Were can i find and edit share-config-custom file in the docker container?
Regards
Jan
06-16-2023 08:27 AM
Hello fedorow,
i found the share-config-custom.xml in the container docker-compose_share_1 with the following settings:
<config evaluator="string-compare" condition="Users" replace="true">
<users>
<!-- minimum length for username and password -->
<username-min-length>2</username-min-length>
<password-min-length>8</password-min-length>
<show-authorization-status>true</show-authorization-status>
</users>
<!-- This enables/disables the Add External Users Panel on the Add Users page. -->
<enable-external-users-panel>false</enable-external-users-panel>
</config>
but the error still exist.
Do you have any other suggestions?
Regards
Jan
06-28-2023 03:33 PM
Look at
<show-authorization-status>...
too.
05-24-2024 09:03 PM
Hi Fedorow,
I have the same problem, I did:
<!-- This enables/disables the Add External Users Panel on the Add Users page. -->
<enable-external-users-panel>false</enable-external-users-panel>
</config>
But doesn't work, Can you Help me with yout solution?
Thanks a lot.
05-25-2024 02:19 AM
Pay attantion users section too.
05-28-2024 07:59 PM
You have to change it from true to false.
show-authorization-status: false
tomcat/shared/classes/alfresco/web-extension/share-config-custom.xml
<config evaluator="string-compare" condition="Users" replace="true">
<users>
<!-- minimum length for username and password -->
<username-min-length>2</username-min-length>
<password-min-length>3</password-min-length>
<show-authorization-status>false</show-authorization-status>
</users>
<!-- This enables/disables the Add External Users Panel on the Add Users page. -->
<enable-external-users-panel>false</enable-external-users-panel>
</config>
Explore our Alfresco products with the links below. Use labels to filter content by product module.