[SOLVED] Cannot create user on Web interface or cmd.php

Hello everyone,

I use Pydio 8.0.2 and I need some help to fix my issue below :
When I want to create a new user on web interface, I have this error message :
pydio_erreur_login1


In English translate : “User already exist, you need to find another login”
But, I’m sure it’s really new username.

And in log interface, I have this message :

With SSH terminal, I have this error :

I think, it’s another issue and probably with new_user_login & new_user_pwd parameters.

My system is : Linux files 3.16.0-4-amd64 #1 SMP Debian 3.16.43-2+deb8u3 (2017-08-15) x86_64 GNU/Linux

Can you help me ?
Thanks a lot.
tags : user, create, web interface, cmd

Hi,
Could you please post your config for authentication ?

Sure,

more /var/lib/pydio/data/plugins/boot.conf/bootstrap. json
{
“core.conf”:{
“SAVE_GUEST_PREFERENCES”:false,
“SKIP_USER_HISTORY”:true,
“USER_CREATE_REPOSITORY”:false,
“USERS_LIST_COMPLETE_LIMIT”:“40”,
“USERS_LIST_COMPLETE_MIN_CHARS”:“0”,
“USERS_LIST_REGEXP_MANDATORY”:false,
“USERS_LIST_HIDE_LOGIN”:false,
“ALLOW_CROSSUSERS_SHARING”:true,
“CROSSUSERS_ALLGROUPS”:true,
“CROSSUSERS_ALLGROUPS_DISPLAY”:true,
“GROUP_OR_ROLE”:{
“group_switch_value”:“group”
},
“USER”:“user”,
“GROUP”:“group”,
“ROLE”:“role”,
“GROUP_AND_ROLE”:“rolegroup”,
“ADDRESSBOOK_GROUP_OR_USERS”:{
“group_switch_value”:“both”
},
“ABOOK_BOTH”:“both”,
“ABOOK_GROUPS”:“groups”,
“ABOOK_USERS”:“users”,
“ABOOK_SEARCH”:“search”,
“LIST_ROLE_BY”:{
“group_switch_value”:“all”
},
“ALL_ROLES”:“allrolls”,
“USER_ROLES_ONLY”:“userroles”,
“PREFIX”:"",
“EXCLUDED”:"",
“INCLUDED”:"",
“USER_CREATE_USERS”:false,
“NEWUSERS_EDIT_PARAMETERS”:“email,USER_DISPLAY_NAME,lang”,
“UNIQUE_INSTANCE_CONFIG”:{
“instance_name”:“conf.sql”,
“SQL_DRIVER”:{
“core_driver”:“core”,
“group_switch_value”:“core”
},
“group_switch_value”:“conf.sql”
},
“mysql_driver”:“mysql”,
“mysql_host”:“localhost”,
“mysql_database”:“pydio”,
“mysql_username”:"",
“mysql_password”:"",
“mysql_use_mysqli”:“true”,
“sqlite3_driver”:“sqlite3”,
“sqlite3_formatDate”:"‘Y-m-d’",
“sqlite3_formatDateTime”:"‘Y-m-d H:i:s’",
“sqlite3_database”:“AJXP_DATA_PATH/plugins/conf.sql/pydio.db”,
“postgre_driver”:“postgre”,
“postgre_host”:“localhost”,
“postgre_database”:“pydio”,
“postgre_username”:"",
“postgre_password”:"",
“AJXP_CLI_SECRET_KEY”:“XXXXXXXX”,
“DIBI_PRECONFIGURATION”:{
“mysql_username”:“filesuser”,
“mysql_use_mysqli”:“true”,
“mysql_password”:“xxxxxxxxx”,
“mysql_host”:“localhost”,
“mysql_driver”:“mysql”,
“mysql_database”:“pydio”,
“group_switch_value”:“mysql”
}
},
“core.auth”:{
“ENABLE_USERS”:true,
“CASE_SENSITIVE”:false,
“ALLOW_GUEST_BROWSING”:false,
“PASSWORD_MINLENGTH”:“8”,
“SESSION_SET_CREDENTIALS”:false,
“SECURE_LOGIN_FORM”:false,
“ENABLE_FORGOT_PASSWORD”:false,
“FORGOT_PASSWORD_ACTION”:“reset-password-ask”,
“DISABLE_BRUTE_FORCE_CHECK”:false,
“MASTER_INSTANCE_CONFIG”:{
“instance_name”:“auth.sql”,
“SQL_DRIVER”:{
“core_driver”:“core”,
“group_switch_value”:“core”
},
“group_switch_value”:“auth.sql”
},
“MULTI_MODE”:{
“instance_name”:“MASTER_SLAVE”,
“group_switch_value”:“MASTER_SLAVE”
},
“instance_name”:“USER_CHOICE”,
“CACHE_MASTER_USERS_TO_SLAVE”:true,
“MULTI_USER_ID_SEPARATOR”:"-",
“MULTI_MASTER_LABEL”:“Company Users”,
“MULTI_SLAVE_LABEL”:“Guest Users”,
“SLAVE_INSTANCE_CONFIG”:{
“instance_name”:“auth.smb”,
“SMBCLIENT”:“smbclient”,
“AUTOCREATE_AJXPUSER”:true,
“ADMIN_USER”:“user”,
“group_switch_value”:“auth.smb”
}
},
“core.cache”:{
“UNIQUE_INSTANCE_CONFIG”:{
“instance_name”:“cache.doctrine”,
“group_switch_value”:“cache.doctrine”,
“CACHE_PREFIX”:“pydio-pydio”,
“DRIVER”:{
“group_switch_value”:“apc”,
“driver”:“apc”
}
}
},
“auth.smb”:{
“AJXP_PLUGIN_ENABLED”:true
},
“auth.ldap”:{
“AJXP_PLUGIN_ENABLED”:false
}
}

Master Auth: should be auth.smb
Slave instance: DB

GREAT ! It’s that.
Thanks a lot, I can create user from web interface.