• Salih K

    (@salihkulangara)


    After updating to latest version, I had to update email recipients, after that when I tried to save the form I am not getting “Updated Successfully” message, it will show ‘saving…’ after few seconds back to ‘save form’. when I checked the console I see the following error `{code: “rest_invalid_param”, message: “Invalid parameter(s): cf_edit_nonce”, data: {…}}’
    please see the screenshot: https://snipboard.io/9BFUGz.jpg

    I have tried to clear the caches and all, still the issue persists, any idea.

Viewing 3 replies - 1 through 3 (of 3 total)
  • woutertz

    (@woutertz)

    Same issue, did you find a solution?

    Hello,
    I’ve just encountered the same problem, for me the issue was in the type casting of the cf_edit_nonce variable: The route expect a string and the variable was a number.

    I made it work by modifying caldera-forms/classes/api/forms.php to allow string and integer types:

    flameshot_screenshot

    34 - 'type' => 'string',
    34 + 'type' => array('string', 'integer'),
    • This reply was modified 3 years, 12 months ago by unapersona. Reason: whitespace edit

    thank you guys this worked for me, suddenly stopped working :@

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Getting invalid rest_invalid_param while saving the form’ is closed to new replies.