Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Import Users
Import Users
Hi all, I need to import about 400 users to the zzzzsys_user table. How do I set a default password (e.g. welcome) for all users after the import? Is there a sql or php function to do that?
Re: Import Users
I think I found a way to do it
Code: Select all
$pw = md5('welcome');
nuRunQuery("UPDATE zzzzsys_user SET sus_login_password = '$pw' WHERE sus_login_password is null");