Arta_S
(Arta)
2 Marzo 2023, 2:32pm
1
Ciao,
Ho appena utilizzato lo strumento di aggiornamento per aggiornare la mia istanza di discourse. Stranamente, il forum ora è inattivo. Quando ho provato a ricostruire dalla riga di comando, ricevo questo errore:
duplicate key value violates unique constraint \"index_tags_on_lower_name\"
Questo errore si ripete più volte nel log, quindi penso che riguardi questo.
Ecco i log completi:
https://paste.apps.7ho.st/dezomakasu.sql (Questa è una parte dei log, ma qui trovi il log completo)
Qualcuno potrebbe aiutarmi? Ho anche ripristinato un file di backup di 7 ore fa, ben prima che questo problema si verificasse, ma ancora lo stesso problema dopo l’aggiornamento.
Grazie
pfaffman
(Jay Pfaffman)
2 Marzo 2023, 2:56pm
2
Dovrai rinominare alcuni di quei tag, credo. Non dovrebbe succedere, ma è successo.
Avvieresti il vecchio container e faresti qualcosa del tipo:
./launcher start app
./launcher enter app
rails c
tags=Tag.where("name like '%ووکامرس%'")
TAG1=tags[1]
TAG1.name='bad1'
TAG1.save
e così via per gli altri (forse ce ne sono solo 3?).
Arta_S
(Arta)
2 Marzo 2023, 4:06pm
3
Dovrei sostituire dove si trova il numero con l’ID del tag?
Questo è quello che ottengo fino a tags=Tag.where("name like '%ووکامرس%'")
root@Seven-Forums-app:/var/www/discourse# rails c
[1] pry(main)> tags=Tag.where("name like '%ووکامرس%'")
=> [#<Tag:0x00007f0cef631638
id: 26,
name: "ووکامرس",
created_at: Fri, 27 Jul 2018 07:05:01.048694000 UTC +00:00,
updated_at: Fri, 27 Jul 2018 07:05:01.048694000 UTC +00:00,
pm_topic_count: 0,
target_tag_id: nil,
description: nil>,
#<Tag:0x00007f0cef61bfb8
id: 108,
name: "حمل-و-نقل-ووکامرس",
created_at: Thu, 16 May 2019 10:12:19.073070000 UTC +00:00,
updated_at: Thu, 16 May 2019 10:12:19.073070000 UTC +00:00,
pm_topic_count: 0,
target_tag_id: nil,
description: nil>,
#<Tag:0x00007f0cef61bef0
id: 312,
name: "ووکامرس",
created_at: Sat, 23 Jan 2021 12:56:26.583839000 UTC +00:00,
updated_at: Sat, 23 Jan 2021 12:56:26.583839000 UTC +00:00,
pm_topic_count: 0,
target_tag_id: nil,
description: nil>,
#<Tag:0x00007f0cef61bdd8
id: 317,
name: "مشکل-ووکامرس",
created_at: Wed, 17 Feb 2021 20:32:41.416170000 UTC +00:00,
updated_at: Wed, 17 Feb 2021 20:32:41.416170000 UTC +00:00,
pm_topic_count: 0,
target_tag_id: nil,
description: nil>]