Benutzer importieren CSV Datei?
Eingetragen von Tropse (111)
am 03.11.2021 - 20:00 Uhr in
am 03.11.2021 - 20:00 Uhr in
Hallo,
wie kann man unkompliziert Benutzer über z.B. CSV Datei importieren?
Das Modul "bulk_user_registration" https://www.drupal.org/project/bulk_user_registration/ sieht vielversprechend aus, aber es läuft bei mir auf mehreren Drupal 9 Installationen nicht rund. Mal werden nur ein User, mal zwei importiert. Nur einmal ein paar mehr. Auf auf einem frischen Standard Drupal mit nur
Modulen
- smtp
- bulk_user_registration
auch nicht.
CSV
username,email,status,role
csv-user1,u1@mail.example.com,1,authenticated
csv-user2,u2@mail.example.com,1,authenticated
csv-user3,u3@mail.example.com,1,authenticated
Die Fehlermeldung besteht nur aus dem Ajax Teil, dann folgt der erfolgreich SMTP Versand, für einen User oder zwei.
An AJAX HTTP error occurred.
HTTP Result Code: 200
Debugging information follows.
Path: /en/batch?id=19&op=do_nojs&op=do
StatusText: OK
ResponseText: 2021-11-03 18:38:28 Connection: opening to mail.example.de:587, timeout=30, options=array()
2021-11-03 18:38:28 Connection: opened
2021-11-03 17:01:26 SMTP INBOUND: "220 mail.example.com ESMTP Postfix"
2021-11-03 17:01:26 SERVER -> CLIENT: 220 mail.example.com ESMTP Postfix
2021-11-03 17:01:26 CLIENT -> SERVER: EHLO mymail.myexample.com
2021-11-03 17:01:26 SMTP INBOUND: "250-mail.example.com"
[....]
2021-11-03 17:01:28 CLIENT -> SERVER: QUIT
2021-11-03 17:01:28 SMTP INBOUND: "221 2.0.0 Bye"
2021-11-03 17:01:28 SERVER -> CLIENT: 221 2.0.0 Bye
2021-11-03 17:01:28 Connection: closed
{"status":true,"percentage":"29","message":"Completed 2 of 7.","label":""}
drush cache-rebuild
hilft auch nicht.
danke.
- Anmelden oder Registrieren um Kommentare zu schreiben
Mit Feed, mapping, content/feed
am 03.11.2021 - 22:02 Uhr
Mit feeds,
https://www.drupal.org/docs/contributed-modules/feeds/creating-and-editi...
wenn man als Anfänger durch:
Creating a Feed type
/admin/structure/feeds
und mapping sich durchgebissen hat.
Creating a Feed
/admin/content/feed
Dann landen die User tatsächlich unter /feed/1 bzw. public://feeds/ (was public://feeds/ beutet ist noch nicht klar)
Und unter /admin/people sind die Benutzer "auch" importiert.
Frage:
was muss man machen, damit diese Mail "welcome email messages sent to new members upon registering, when no administrator approval is required. ...Sie können sich jetzt mit einem Klick auf den folgenden Link anmelden oder diesen alternativ in Ihren Browser kopieren: ..."
automatisch versendet wird?
Eigentlich sollte die Mail rausgehen, wenn Status aktiv gesetzt wird?
Wenn die importierten User von aktiv auf gesperrt gesetzt werden und dann wieder auf aktiv, dann wird diese Mail versendet.
Wie geht das schon beim Import?
Drupal 9.x, Ubuntu
(public://feeds/ vs. private://feeds/) Lösung?
am 03.11.2021 - 23:31 Uhr
Feeds "privat" machen...
https://www.ostraining.com/blog/drupal/creating-drupal-8-private-file-sy...
https://drupal.stackexchange.com/questions/267909/how-to-specify-the-fil...
Das scheint zu klappen.
Und für die Nostalgiker! ;)
Created: 5 May 2011 at 08:08 UTC
Titel: Import files in public://feeds/ vs. private://feeds/
Der Ordner "privat" oder wie immer man ihn nennt:
'sites/default/files/private'
ist chmod 755 ok?
Es heißt automatisch wird eine htaccess Datei angelegt. Wo? In meinem "private" Ordner wurde ein Ordner "feeds" angelegt, dort liegen auch die csv Dateien, aber eine htaccess liegt nur unter /web/sites/default/files/ und da schon länger!
Ist das so ok?
.htaccess
# Turn off all options we don't need.
Options -Indexes -ExecCGI -Includes -MultiViews
# Set the catch-all handler to prevent scripts from being executed.
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
<Files *>
# Override the handler again if we're run later in the evaluation list.
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
</Files>
# If we know how to do it safely, disable the PHP engine entirely.
<IfModule mod_php7.c>
php_flag engine off
</IfModule>
Danke
Drupal 9.x, Ubuntu