How to import ZenTao user information?
2017-09-26 10:10:43
Rodney
  • Visit: 2
  • Join Date: 2017-09-26
  • Last Login: 2017-09-26
How to import ZenTao user information?
2017-09-26 10:26:59
zhangjiahui
  • Visit: 113
  • Join Date: 2017-05-12
  • Last Login: 2020-08-18
Step1. Export zt_user of ZenTao.
Step2. Import zt_user to Zdoo database after installation. 
Step3. Execute SQL.

replace into sys_user (account,password,realname,role,email) select account,md5(concat(password, account)) as password,realname,role,email from zt_user;
update sys_user set admin='super' where account='admin';
1/1