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
Started 11 years ago by arabedioux | 2 posts |
-
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 appreciatedPosted 11 years ago # -
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 11 years ago #
Reply
You must log in to post.