I have a channel form that when I hit submit, I get this error message:
Error Number: 1364
Field 'field_id_2' doesn't have a default value
INSERT INTO `exp_channel_data` (`entry_id`, `channel_id`, `site_id`, `field_id_9`, `field_ft_9`) VALUES (8, '3', '1', 'in vcc.', 'none')
Filename: libraries/api/Api_channel_entries.php
Line Number: 1507This is my template: Very simple, a user should be able to add Gigs, for now as a test, with just a title and a description box.
{exp:channel:form channel="gigs" return="/gigs"}
<input name="title" id="title" type="text">
<textarea name="gig_description" id="gig_description"></textarea>
<input type="submit" value="Submit">
{/exp:channel:form}
{exp:channel:entries channel="gigs"}
{title}
{/exp:channel:entries}