Neue Kommentare von Drupal 6 nach Drupal 8 kopieren

Es gibt eine Community-Webseite, basiert auf Drupal 6, welche erste Phase von Upgrade/Migration hinter sich hat. Täglich kommen hunderte neue Kommentare dazu. Migration jedes mal neu starten geht nicht. Alle neue Kommentare manuell umziehen ist sehr zeitaufwendig. Deswegen haben wir folgendes ausprobiert, was scheinbar funktioniert:

 

  1. Hunderte neue leere Kommentare auf D8 erstellen. das kann man auch mit F5 / Browser-Reload.

     
  2. DB-Tabelle db-drupal8.comment_field_data und db-drupal6.comments abgleichen

     
  3. DB-Tabelle db-drupal8.comment__comment_body und db-drupal6.comments abgleichen

     
  4. Wenn nötig comment_body_format anpassen



Mögliche SQL Code (keine Haftung):

update drupal8.comment_field_data d8, drupal6.comments d6 set

d8.status=d6.status,

d8.pid=d6.pid,

d8.entity_id=d6.nid,

d8.subject=d6.subject,

d8.uid=d6.uid,

d8.name=d6.name,

d8.mail=d6.mail,

d8.homepage=d6.homepage,

d8.hostname=d6.hostname,

d8.created=d6.timestamp,

d8.changed=d6.timestamp,

d8.thread=d6.thread

where d8.cid = d6.cid and d8.cid > 12345;

 

 

 

update drupal8.comment__comment_body d8, drupal6.comments d6 set

d8.comment_body_value=d6.comment

where d8.entity_id = d6.cid and d8.entity_id > 12345;

 

 

"cid > 12345" muss man natürlich auch anpassen oder entfernen.

 

 

Neuen Kommentar schreiben

CAPTCHA
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.

Suche

Neueste Kommentare

  • 3 weeks 6 days ago
    Transaction isolation level REPEATABLE-READ The recommended level for Drupal is "READ COMMITTED". (Drupal Status Report)

     Edit "/etc/my.cnf" ( under [mysqld] ):

    transaction_isolation="READ-COMMITTED"

    Restart MariaDB / MySQL:

  • 1 month ago
    Wget - Eine Webseite rekursive downloaden

    wget -U 'Mozilla/MyUserAgent' -P MyTempDir123 --wait=0.2 --random-wait -nd -r -x -l 4 -e robots=off --reject

  • 1 month ago
    Wget - Eine Webseite rekursive downloaden

    wget -U 'Mozilla/MyUserAgent2024' -P MyOutPutDirectory --wait=1 --random-wait -nd -r -l 2 -e robots=off --reject

  • 2 months 1 week ago
    CPU benchmarking with sysbench (single-threaded/all cores)

     

    # sysbench --threads="$(nproc)" cpu run

  • 2 months 1 week ago
    CPU benchmarking with sysbench (single-threaded/all cores)

    # sysbench --threads="$(nproc)" cpu run

  • 2 months 1 week ago
    Linux Autovervollständigung - bash autocomplete
    source ~/.bashrc

    Diese Lösung wird empfohlen aber hat bei mir nicht funktioniert.

    Welche Alternative gibt es?

  • 2 months 1 week ago
    PHP-CLI auf PHP8.2 umstellen (für Composer, Drush etc)

    ln -snf /opt/plesk/php/8.3/bin/php /etc/alternatives/php

  • 2 months 1 week ago
    Drush Update failed (require php >=8.2)

    In composer.json, update: 

     

  • 2 months 1 week ago
    Drupal: Anmeldung fehlgeschlagen Es hat mehr als 5 fehlerhafte Anmeldeversuche für dieses Benutzerkonto gegeben. Es ist vorübergehend gesperrt.
    drush sqlq "DELETE FROM flood"
  • 2 months 1 week ago
    Drupal SMTP + Gmail funktioniert nicht mehr (Passwort ist richtig); was ist die Lösung?