• Resolved dubh

    (@spmcnerd)


    Hello,

    I’m not able to submit the form and keep getting “Your session has expired, please refresh the page and try again. (Error Code: MF002)”. Can you tell what’s going on? Thanks!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Ali Khallad

    (@alikhallad)

    Hey @spmcnerd,

    We have multiple security checks on the form (on submission), and this is one of them. Sometimes, these security checks may have false positives due to certain hosting configurations or heavy caching. In this case, the quickest solution is to disable these security checks is to add the following snippet

    add_filter( 'mf_bypass_session_error', '__return_true' );

    Add this one line as a snippet either via a snippets plugin or to your child theme’s functions.php file. This will bypass the session checks that our plugin performs. It’s for additional spam protections, there are still other security checks in place, so this shouldn’t cause any major issues.

    In the meantime, I’ll see if we can determine what’s the issue with your specific form and improve the session check logic to avoid similar errors in the future. If we do, we’ll release an update shortly with the fix.

    Thread Starter dubh

    (@spmcnerd)

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.