AI OnAI Off
Hi Sebp,
What version of forms are you on also?
Is the form setup as a multi-step form at all?
Paul
I believe this is a bug. I will file a bug to Form team. Thanks for bringing this into our attention and apologies for any inconvenience it has caused
Meanwhile I think you can make this workaround:
public override bool IsMalFormSteps(IForm form)
{
if (form == null || form.Steps == null)
{
return false;
}
return base.IsMalFormSteps(form)
}
That should work in the mean time when the bug is fixed. Thank you for your understanding and apologies for the inconvenince
We recently upgraded a site from CMS 11 to CMS 12 and the site is up and running fine after a few bugs. Now, a few months after the upgrade and deployment there is another bug that I can't quite wrap my head around and that seemingly has something to do with forms. It causes the w3wp to crash and the site to restart.
Looking in the production server's Event Viewer, I get the following error:
I've done some research on the internal methods it references (GetSubmittableStatus, IsMalFormStep) and the only idea I can come up with is that there is some sort of corrupt form post upgrade causing these internals to crash rather than return true/false as intended.
Looking for any insight or ideas on what might be the cause or ideas of a solution.