Getting fails for importing family, even though (I think) my data files seem like requested.
Wondering if there is an issue with import_families.php
After a quick look into User Admin/import_families.php, the SQL statements don't seem to match thegibbonFamily table field names on lines 414 and 439 (update and add family). Looks like gibbonFamily has been changed with field "languageHome" (in the php) now becoming 2 fields "languageHomePrimary" and "languageHomeSecondary"
However, rewriting the line 439 to
$sql="INSERT INTO gibbonFamily SET name=:name, nameAddress=:nameAddress, homeAddress=:homeAddress, homeAddressDistrict=:homeAddressDistrict, homeAddressCountry=:homeAddressCountry, status=:status, languageHomePrimary=:languageHome, familySync=:familySync" ;`
still didn't work (even though I allowed NULLs for languageHomeSecondary in the tables)