Massenimport von neuen Benutzern
-
Hallo,
ich möchte gerne ca 80 neue Kontakte per Massenimport in i-doit pflegen. Ist das irgendwie möglich?
Danke.
-
Aktuell nur per LDAP oder selbst erstelltem Script.
Mit diesen SQL Statements wird ein einziger User angelegt:
INSERT INTO isys_obj SET isys_obj__title = 'Vorname Nachname', isys_obj__isys_obj_type__id = (SELECT isys_obj_type__id FROM isys_obj_type WHERE isys_obj_type__const = 'C__OBJTYPE__PERSON'), isys_obj__created_by = 'massimport', isys_obj__created = NOW(), isys_obj__updated = NOW(), isys_obj__updated_by = 'massimport', isys_obj__status = 2; SET @OBJID = LAST_INSERT_ID(); INSERT INTO isys_catg_global_list SET isys_catg_global_list__isys_obj__id = @OBJID; INSERT INTO isys_cats_person_list SET isys_cats_person_list__isys_obj__id = @OBJID, isys_cats_person_list__title = 'username', isys_cats_person_list__user_pass = MD5('pass'), isys_cats_person_list__first_name = 'Vorname', isys_cats_person_list__last_name = 'Nachname';
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login