How to import information of ZenTao users?
2017-10-19 16:55:29
Joshua
  • Visit: 2
  • Join Date: 2017-10-19
  • Last Login: 2017-10-19
How to import information of ZenTao users?
2017-10-20 08:30:44
zhangjiahui
  • Visit: 113
  • Join Date: 2017-05-12
  • Last Login: 2020-08-18
1. Outport zt_user table by sql file;
2. Import zt_user to database after installation;
3. 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