• ResolvedPlugin Author Franky

    (@liedekef)


    The upgrade from 1.7.14 => 1.7.15 could cause problems if you use custom answer fields in your RSVP forms.

    People that use custom answer fields and already updated to 1.7.15 (out for 2 days) should revert to a backup for their answers table and execute the following query afterwards:

      ALTER TABLE wp_eme_answers add field_id INT(11) DEFAULT 0;
      UPDATE wp_eme_answers SET field_id = (select field_id from wp_eme_formfields where field_name = wp_eme_answers.field_name LIMIT 1);
      ALTER TABLE wp_eme_answers DROP COLUMN 'field_name';

    (and check if the newly created column field_id contains the correct field id numbers)
    Also upgrading from 1.7.14 to 1.7.16 will not cause the problem anymore of course.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thank you!

    there is not only this problem:
    im using a lot of custom templates und formfields for my bookings. ALL!!! stored info from the formfields were deleted in one of the last updates.
    look at here: https://www.runningsocks.de/wordpress/terminkalender/eventsinglepage/?event_id=399
    Look at “Folgende Teilnehmer” and above:
    The list is not complete, you see only Points, but no Info. Only the last ist complete because is he was added 2 days ago.
    so, i have a big problem: where is the birthday, what Size of Shirt orderd he, wich distanz wants he run??

    Plugin Author Franky

    (@liedekef)

    No info was deleted, only the link between the answer and the field name/id. And if you updated from 1.7.14 to 1.7.16 directly, you don’t have this problem. You can check your database even if tou want to.
    For the rest : every wordpress update (plugin or otherwise) advises you to take a backup first. If you applied the update from 1.7.14 to 1.7.15, then my initial advice stands.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Version 1.7.15 problem’ is closed to new replies.