Closed (fixed)
Project:
Webform
Version:
6.x-2.6
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Reporter:
Created:
30 Apr 2009 at 07:30 UTC
Updated:
11 May 2009 at 18:42 UTC
I read in the README.txt that all the submitted data are collected in a database table. Our webform has multiple data to be submitted, which is very important to us.
When I check the database, the only thing I find is five columns: sid, nid, uid, submitted, remote_addr. Their content provides no useful data (numbers and an IP). There's also a warning that says: PRIMARY and INDEX keys should not both be set for the column 'sid'.
I've tested the contactform for a couple of times now and I still can't find any of the data I submitted, not in webform_submissions or any other webform table.
Can you help me out?
Comments
Comment #1
knalstaaf commentedP.S.: Accessing the submitted data through the Drupal admin is no problem. I'm strictly talking about the database and its tables. The data must be in there, but where?
It's mandatory that we have these data in a solid database in order to export these data for other applications.
Comment #2
djalloway commentedWhat form are you referring to when you say "contact form" ?
Is it the core Drupal Contact Form? or a custom Webform you created to be the Contact Form?
The Webform module has a few key tables that deal with data it collects.
The
submissionstable keeps records of the who and where the form was submitted and thesubmitted datatable contains the actual data that was submitted, the records are tied together via the SID column.But the ONLY data it collects is data submitted via a Webform node.
Just trying to clarify a bit as your post is a bit confusing when I'm trying to figure what it is you're doing exactly.
Comment #3
knalstaaf commentedI'm talking about webform indeed. Thanks for your reply. I believe that's the very answer to my question.
Comment #4
djalloway commentedglad I could help