It's impossible to show users list

cancel
Showing results for 
Search instead for 
Did you mean: 
bemous
Active Member II

It's impossible to show users list

Jump to solution

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

Erreur Utilisateur.png

3 Solutions

Accepted Solutions
bemous
Active Member II

Re: It's impossible de show users list

Jump 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

View solution in original post

abhinavmishra14
Advanced

Re: It's impossible de show users list

Jump to solution

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
~Abhinav
(ACSCE, AWS SAA, Azure Admin)

View solution in original post

saidone
Active Member

Re: It's impossible de show users list

Jump to solution

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

View solution in original post

7 Replies
bemous
Active Member II

Re: It's impossible de show users list

Jump 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

EddieMay
Alfresco Employee

Re: It's impossible de show users list

Jump to solution

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,

Digital Community Manager, Alfresco Software.
Problem solved? Click Accept as Solution!
abhinavmishra14
Advanced

Re: It's impossible de show users list

Jump to solution

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
~Abhinav
(ACSCE, AWS SAA, Azure Admin)
vpan
Active Member II

Re: It's impossible to show users list

Jump to solution

Same issue for the V 6.2 CE not the solution ...

EddieMay
Alfresco Employee

Re: It's impossible to show users list

Jump to 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,

Digital Community Manager, Alfresco Software.
Problem solved? Click Accept as Solution!
vpan
Active Member II

Re: It's impossible to show users list

Jump to solution

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

 

saidone
Active Member

Re: It's impossible de show users list

Jump to solution

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