An error has occurred in the TNG software. What to do:

If you just installed an upgrade, you might have skipped part of the installation instructions. Go back to the upgrade readme page reread the instructions. Pay special attention to the database structure step.

If you just installed TNG for the first time, you might still need to create the database tables. Return to the readme.html page to find that step.

If you are the site owner, you may contact TNG support for further assistance with this problem. Please copy the query below and paste it into your message.



Query: 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 = 'HFCook') union all (SELECT gedcom, famc, birthdatetr - interval 1 day FROM `tng_people` WHERE day(birthdatetr) and length(famc)and gedcom = 'HFCook') union all (SELECT gedcom, famc, birthdatetr - interval -1 day FROM `tng_people` WHERE day(birthdatetr) and length(famc)and gedcom = 'HFCook'))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 h.lastname, w.lastname, p.lastname, p.birthdatetr, p.firstname LIMIT 50

Illegal mix of collations (utf8_general_ci,COERCIBLE), (utf8_general_ci,COERCIBLE), (latin1_swedish_ci,IMPLICIT) for operation 'concat'