WPIntell

Source evidence

Problem uploading GEDCOM

GedShow · support · 2025-11-02T19:03:00+00:00

complaintsentiment
highseverity
0.98relevance
0replies
Evidence onlycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

1 / 1 rows with source links

100.0% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

0 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
stevendaily unresolved
After installation, while I was able to upload a GEDCOM file, no one was being added to the database. Indeed, none of the GEDSHOW tables even existed in the database. I found that MySQL was throwing errors when trying to create the ‘_gedshow_names’ table. The errors were 1074 – Column length too big for column ‘note’ (max = 16383) and 1118 – Row size too large. Changing the note field to VARCHAR(1000) solved the problem. Using phpmyAdmin, I manually created the table: CREATE TABLE [prefix]_gedshow_names ( id int NOT NULL AUTO_INCREMENT, indref VARCHAR(22) NOT NULL, given VARCHAR(100), surname VARCHAR(100), gender VARCHAR(1) NOT NULL DEFAULT 'U', living VARCHAR(1) NOT NULL DEFAULT 'Y', dob VARCHAR(35), dod VARCHAR(35), note VARCHAR(1000), UNIQUE KEY id (id) ) COLLATE = 'utf16_general_ci'; I also had to manually update wp-config.php to add this line: define('ALLOW_UNFILTERED_UPLOADS', true); After uploading the file successfully, I deleted this line from wp-config for security. This may be helpful to others. This topic was modified 6 months, 3 weeks ago by stevendaily .

Comments

0 shown

No comments were stored for this source.