August 09, 2018
Recently we had an issue in UAT site where WFFM custom save action was found not working on CD servers, but it was absolutely fine on CM server.
August 09, 2018
Recently we had an issue in UAT site where WFFM custom save action was found not working on CD servers, but it was absolutely fine on CM server.
After checking we found that settings that are required to be done on Sitecore.Forms.config on CD servers were missing, also- we observed that “Custom Action” checkbox was not checked on the custom save action item.
So, here are couple of things to double check when we see custom save action not working in CD servers:
1.Make sure “Client Action” is checked on WFFM custom save action.
2. Make sure to configure CD server config as per WFFM Installation guide which includes:
<!—HOOKS–>
<hooks> <!—remote events hook–>
<hook type=”Sitecore.Form.Core.WffmActionHook, Sitecore.Forms.Core”/>
<hooks>
<!–Remote events handler–>
<event name=”wffm:action:remote”>
<handler type=”Sitecore.Form.Core.WffmActionHandler, Sitecore.Forms.Core” method=”OnWffmActionEventFired” > <param name=”actionManager” ref=”/sitecore/wffm/wffmActionExecutor” /> </handler>
</event>
<setting name=”WFM.IsRemoteActions” value=”true” />
<setting name=”WFM.MasterDatabase” value=”web” />
Hope this helps!
Happy learning!