Closed (fixed)
Project:
Multiforms
Version:
5.x-1.2
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
31 Mar 2008 at 12:44 UTC
Updated:
28 Apr 2008 at 16:54 UTC
While every other item is stored in the submissions I cannot receive anything that is written in a textarea field. Can anybody help?
Comments
Comment #1
jrockford commentedSame problem here, also does not send "select" values from select boxes.
Comment #2
mcantelon commentedI've fixed the textarea issue. Download the "head" version of multiforms or wait until tomorrow for the Drupal 5 release to re-pack for download. I wasn't able to replicate jrockford's issue... I'll ask him for more info!
Comment #3
mcantelon commentedjrockford,
What exactly is the issue with select fields in multiform? Are the values not getting stored correctly? If you originally installed an earlier version of multiforms you might have to run the Drupal updater so multiforms can add the necessary table for this.
The SQL for the table needed is, incidentally, as below:
CREATE TABLE multiform_field_options (
multiform_field_option_id int(10) NOT NULL auto_increment,
multiform_field_option_parent_field_id int(10) default NULL,
multiform_field_option_text varchar(255),
multiform_field_option_value varchar(255),
multiform_field_option_sortorder int(10),
PRIMARY KEY (multiform_field_option_id)
) /*!40100 DEFAULT CHARACTER SET utf8 */;");
Cheers,
Mike
Comment #4
jrockford commentedI have a few select boxes with "yes" "No" answers or similar two word answers. When I post the form, it doesn't count the selects as answered and does not post the data either. I haven't checked the SQL yet but will do that shortly. I had an issue with the SQL with Multiforms to begin with when I set it up because of prefixed tables. I ended up just copying each table and leaving the old tables without hte prefixes to get the thing to work. Not sure why this is an issue either but I got rid of the errors when I did this, otherwise it just kept saying the tables didn't exist.
Thanks
JR.
Comment #5
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.