This forum is no longer open and is for reading/searching only.

Please use our new MachForm Community Forum instead.

MachForm Community Forums » MachForm 3

Captcha not working


  1. arabedioux
    Member

    I am getting this error upon submission, I was using the simple image, recaptcha does not show up at all. If I go back though, it would submit.

    Strict Standards: Non-static method PhpCaptcha::Validate() should not be called statically in /homepages/45/d288023048/htdocs/paramount/forms/includes/post-functions.php on line 1513

    Warning: Cannot modify header information - headers already sent by (output started at /homepages/45/d288023048/htdocs/paramount/forms/includes/post-functions.php:1513) in /homepages/45/d288023048/htdocs/paramount/forms/view.php on line 53

    -----------------------------
    Any help would be greatly appreciated

    Posted 10 years ago #
  2. yuniar

    The PHP on your server seems to be running under strict mode.
    To fix this, you can edit your "includes/post-functions.php" file, search around line 1676 for this code:

    if (PhpCaptcha::Validate($captcha_response_field) !== true) {

    change it to become:

    if (@PhpCaptcha::Validate($captcha_response_field) !== true) {

    MachForm Founder

    Posted 10 years ago #

RSS feed for this topic

Reply