recaptcha v2 not working in html via DreamWeaver - recaptcha

I have a contact form in html via DreamWeaver, and I have inserted recaptcha v2 in the form. Two things are not working. 1. The form can be submitted without clicking the recaptcha box. 2. if the box is clicked, I get a message saying I submitted a gibberish word (see below). how do I fix the code?
You have submitted a gibberish word: "03aiiukzg-7r-qryb1oca4e2zq0vhiehwkzfahzyxju8mayz36qmixfz1yr_cgec1ctjovccj6ymjuyuhtr8a0eetzo6vdq8l22x8fs1mqpce5zafgqhji4ez75cfcqfsgn6tvn5xajglypg5e0g-jgpwrqjrebgbtup40hyk99qrvh_ax-ewuvabcyvz1igdj785wvhlo_tnkjujbkbmtghibs4hmvlcez7qvymjttqxy97q8zhqf0v0nipjqetcwmju0xqmvswins8fekhchmxjpulb5rje4ef-ar6vxltxh0ktkxmgnlivhzswf_haq5hcdyqucnpqgmybantcekhqf0t6wj-e3faadozatd-ynbnzfgwsejjf-1vmvtbrvzfyjxhi8cfxmflqjc-idxmocqubivu3q6cop7mve7c7voo8xbrfyfgwbnlwgyczsn9oksufjvsn_us8kozd2ycg2ezadhcaegqtsfuns2i4w7wp64cmxin-e0s_lsoe8or8jqrqhwkrheqcaffh-jfyqp0tujgshd4bncnzbywg6estbdrhngtutiv9a6oyomqi5lavh9szl"

Related

ReCAPTCHA auto submit, without submit button

I'm sorry, I speak a little English.
My secret content:
<p>Címek</p><ul id="secret"><li>Cím1</li><li>Cím2</li><li>Cím3</li></ul>
I would like see this (if can: without jQuery):
After valid reCAPTCHA, see (not use submit button):
I do not want use submit button.
How to?

How to submit a form in a new page with using ruby web-watir phantomjs

I am using web-watir to drive phantomjs. I am trying to submit a bunch of forms(POST) on the webpage. I have all the forms in a collection. When I click the submit button and browser.back(), I get Selenium::WebDriver::Error::StaleElementReferenceError. I tried using form.submit() but same issue of going back and getting StaleElementReferenceError. I tried to submit the form in another page (browser.execute_script( "window.open(page)" )) but I don't think that will submit my form (if the form was a GET, that might have worked). I tried Net::HTTP.post_form() which is separate from the phantomjs session (did not work, I need to be logged in).
I am out of ideas except find the elements all over each time I navigate back. I guess I could replace phantomjs with Chrome or Firefox. Tell me, is there a way to submit the form in a new page phantomJS?
Here is some code:
forms = browser.forms()
forms.each{ | form |
form.submit()
browser.back()
}
If submitting each form brings you to another page, then it is expected that you get a StaleElementReferenceError for any previously saved elements. This is how Selenium-WebDriver was designed, so the problem will still exist if you switch to Chrome or Firefox.
Given that you are iterating through each form, it would be easy to locate each form by index:
browser.forms.length.times do |i|
browser.form(index: i).submit
browser.back
end
The above code took the same approach of directly submitting the form. However, if possible, the submit button should be clicked. Directly submitting the form may bypass important code that is tied to the action of clicking the submit button.

Contact Form 7 unable to submit by AJAX so redirects to 404

I am working on a build for a new website which includes the Wordpress plugin Contact Form 7 to handle the submission of the form & (is supposed) to display a response via AJAX.
I simply cannot get the AJAX side of this to work. Upon submission the form works fine, but the page reloads and displays the 404 page... not cool!
Following the FAQ page I have run a number of tests. I can confirm:
The page is correctly referencing wp_head and wp_footer.
The page has no JavaScript errors in the console.
Whilst the page has one or two validation errors (created by another plugin), I don't believe this to be the issue. I have attempted to test this by stripping out everything except the form (and the header & footer).
I have deactivated each plug-in for conflicts & the problem persists.
I have flushed the permalinks (by re-saving via settings > permalinks) & tested.
I have created new form instances & tested.
Reinstalled the Contact Form 7 plug-in & tested.
After all that I'm still no closer to a solution. Can anyone shed any light on this issue as I'm very keen to avoid using an alternative plugin.
I can provide more details if needed. Thanks!
I tried clicking on the URL you provided for your website and it did not work.
I would check to ensure there are no conflicts with the jQuery as this could be the cause of the form not submitting with AJAX.

Telerik RadTextbox input behaving like watermark

I've a Telerik RadTextbox in one of my .ascx files in a Sitefinity 5.4 website. When a form containing the RadTextbox is submitted and there is some error thrown by the server, and the user goes back and tries to resubmit the form, there is validation message appearing even if there is input showing from the initial submission. It looks like the input from the first submission is treated as watermark.
Any idea why this is happening?
Is the user going back by using the browser back button? Then the validations will still exist. Try to eliminate the errors by clients side validation first, then server side validations. If the errors still exists, you should clear the validation messages on the load of the control (if it is not a postback of course)

EditLive! Rich Text Editor - submitting form via ajax

The project I'm working on is using the Java EditLive! rich text editor. I've been trying to make the EditLive form post via ajax, but am having some problems using IE8. Here are the steps we're taking:
Load the main page
The user clicks a link and the EditLive applet is loaded and attached to the page via ajax
The user finishing editing their document and clicks the submit button
The form posts via ajax (we're using jQuery.post())
The EditLive section is reloaded and the EditLive content is correct.
The form immediately posts again
The EditLive content is back to being blank.
Unfortunately (for debugging reasons), this is not happening in FireFox - there is only a single form post and the values are saved correctly.
From what I can tell debugging this in IE8, it looks like the submit event is getting called twice with 2 different forms. My thought is that the applet isn't getting destroyed correctly, though I've tried everything in my power to destroy it.
So I was wondering if anyone has any experience successfully submitting EditLive data via ajax? Or maybe this is just a limitation to the product?
Any help would be greatly appreciated!
I know this is an old issue but you likely want to look at the autoSubmit property of EL:
http://docs.ephox.com/display/EditLive7/AutoSubmit+Property
http://docs.ephox.com/display/EditLive/AutoSubmit+Property
I suspect that by using an AJAXy submit process this is somehow causing you issues with EditLive and its standard behavior. I would try turning off autoSubmit and grabbing the content yourself in your jQuery posting process.

Resources