Version 1.7.15 problem
-
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)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Version 1.7.15 problem’ is closed to new replies.