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 p.personID, p.lastname, p.firstname, p.birthdate, father.personID AS fatherid, rpad(mid(father.personID,2)) as john, father.lastname AS Name1, father.firstname AS father1, mother.personID AS Motherid, mother.lastname AS Name2, mother.firstname AS morther2, p.gedcom FROM tng_children AS c LEFT JOIN tng_families AS f ON (c.familyID=f.familyID AND c.gedcom=f.gedcom) LEFT JOIN tng_people AS p ON (c.personID=p.personID AND c.gedcom=p.gedcom) LEFT JOIN tng_people AS mother ON (f.wife=mother.personID AND f.gedcom=mother.gedcom) LEFT JOIN tng_people AS father ON (f.husband=father.personID AND f.gedcom=father.gedcom) WHERE f.husband>"" OR f.wife>"" ORDER BY father.personID, mother.personID, p.lastname, p.firstname, p.birthdate LIMIT 50

Incorrect parameter count in the call to native function 'rpad'