Der er fejl i TNG-softwaren. Hvad skal man gøre:

Hvis man netop har installeret en opgradering, kan man muligvis have sprunget over en del af installationsinstruktionerne. Gå tilbage til opgraderings readme siden og læst instruktionerne igen. Vær særlig opmærksom på databasestruktur trinnet.

Hvis det er første gang, at TNG er blevet installeret, kan det være nødvendigt at oprette databasetabellerne. Gå tilbage til siden readme.html for at finde det trin.

Ejeren af webstedet kan kontakte TNG support for yderligere hjælp til dette problem. Kopier nedenstående forespørgsel, og indsæt den i en meddelelse.



Forespørgsel: SELECT concat('', p.firstname,' ', if(length(p.nickname),concat('"',p.nickname, '" '),''), if(length(p.lnprefix),concat(p.lnprefix, ' '),''), p.lastname,if(length(p.suffix),concat(', ', p.suffix, ' '),''), '') as name, if(isnull(dayname(p.birthdatetr)),p.birthdate,concat(left(dayname(p.birthdatetr),3),', ',p.birthdate)) as birthdate, concat('', if(isnull(w.lastname),h.lastname,concat( '',h.lastname,'/ ',w.lastname)), '') as Family, concat('', h.firstname,' ', if(length(h.nickname),concat('"',h.nickname, '" '),''), if(length(h.lnprefix),concat(h.lnprefix, ' '),''), h.lastname,if(length(h.suffix),concat(', ', h.suffix, ' '),''), '') as Father, concat('', w.firstname,' ', if(length(w.nickname),concat('"',w.nickname, '" '),''), if(length(w.lnprefix),concat(w.lnprefix, ' '),''), w.lastname,if(length(w.suffix),concat(', ', w.suffix, ' '),''), '') as Mother from (select gedcom, famc, birthdatetr from ( (SELECT gedcom, famc, birthdatetr FROM `tng_people` WHERE day(birthdatetr) and length(famc)and gedcom = 'schroeder') union all (SELECT gedcom, famc, birthdatetr - interval 1 day FROM `tng_people` WHERE day(birthdatetr) and length(famc)and gedcom = 'schroeder') union all (SELECT gedcom, famc, birthdatetr - interval -1 day FROM `tng_people` WHERE day(birthdatetr) and length(famc)and gedcom = 'schroeder'))as bd group by gedcom,famc,birthdatetr having count(*) >1) as tw join `tng_people` as p on tw.gedcom = p.gedcom and tw.famc = p.famc and tw.birthdatetr = p.birthdatetr join `tng_families` as f on p.gedcom = f.gedcom and p.famc = f.familyid left join `tng_people` as h on f.gedcom = h.gedcom and f.husband = h.personid left join `tng_people` as w on f.gedcom = w.gedcom and f.wife = w.personid order by p.birthdatetr, p.lastname, p.firstname

Illegal mix of collations (utf8mb3_general_ci,COERCIBLE), (utf8mb3_general_ci,COERCIBLE), (latin1_danish_ci,IMPLICIT) for operation 'concat'