form error page
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/forms.html
http://www.wysiwygwebbuilder.com/form_wizard.html
Frequently Asked Questions about Forms
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/forms.html
http://www.wysiwygwebbuilder.com/form_wizard.html
Frequently Asked Questions about Forms
form error page
I created a new form in WB16, all works ok but when I intentionally input an error in the captcha, the form does not go the error page, but instead just display a white screen (firefox). I checked other forms I have, they all seem to do the same thing on an error. The same thing happens even on another domain I maintain.
https://gbarc.ca/netcontrol.php
thanks
https://gbarc.ca/netcontrol.php
thanks
Re: form error page
To be able to help you with this, I need to see all settings.
Do you have a demo project?
Note that I do not need the complete project, only a demo with the relevant pages.
Related FAQ:
https://www.wysiwygwebbuilder.com/forum ... 10&t=82134
Do you have a demo project?
Note that I do not need the complete project, only a demo with the relevant pages.
Related FAQ:
https://www.wysiwygwebbuilder.com/forum ... 10&t=82134
Re: form error page
I think I have this et up ok, look for the mailus.php page
https://gbarc.ca/demo.wbs
https://gbarc.ca/demo.wbs
Re: form error page
I should add, that the success page displays fine, it's just the error page
Re: form error page
The error page of the captcha is set to a non-existing page.
Re: form error page
I can see error.php on the server using filezilla and if I access it directly it appears...
https://gbarc.ca/error.php
https://gbarc.ca/error.php
Re: form error page
In the properties of the captcha object, the error page is set to non-existing page. It is not set to 'error', at least not in the project you have shared.
Re: form error page
I didn't actually publish the "demo" page, however, on the gbarc.ca domain, I selected the error page from the project listing, the same way I selected the success page.... I can see the page on the web server, it exists when I load it directly and its part of the project drop down screen. As a test I directed the error page tobe the index page and still it just displays a blank white screen.
Re: form error page
maybe I found it, I had selected "enable real time validation with ajax", when I unselected this, the error page appears
Re: form error page
Then maybe you did not you did not publishs all files?
'Real-time validation' generates extra files that need to be published.
'Real-time validation' generates extra files that need to be published.
Re: form error page
I have always had to do a certain amount of experimentation to get the captcha to work correctly, especially when validation is used, but when things don't work, my first go to is to publish all files. This was working, but its only recently I have had to play with the forms
Re: form error page
Hello
Is it possible to have an error message (validation) for recaptcha(ver. 2) instead of having an error page.
thanks for the help
Is it possible to have an error message (validation) for recaptcha(ver. 2) instead of having an error page.
thanks for the help
Re: form error page
In WB16, you can use events to validate recaptcha result. But re-captcha only sends an event when the result is ok.
Re: form error page
If I use the "default" type captchat, and I configure the "validate" tab, nothing happens when I test my form .....
Re: form error page
Did you enable 'Enable real-time validation through AJAX'?
Re: form error page
yes, it has been checked
I found, I added the following code:
The code disables the Ctrl + U key.
<script src = "https://ajax.googleapis.com/ajax/libs/j ... ery.min.js" type = "text / javascript"> </script>
<script type = "text / javascript" language = "javascript"> $ (function () {$ (this) .bind ("contextmenu", function (e) {e.preventDefault ();});}); </script>
<script>
document.onkeydown = function (e) {
if (e.ctrlKey &&
(e.keyCode === 85)) {
return false;
}
};
</script>
Do you have any suggestion to disable Ctrl + U key
thanks for the help
I found, I added the following code:
The code disables the Ctrl + U key.
<script src = "https://ajax.googleapis.com/ajax/libs/j ... ery.min.js" type = "text / javascript"> </script>
<script type = "text / javascript" language = "javascript"> $ (function () {$ (this) .bind ("contextmenu", function (e) {e.preventDefault ();});}); </script>
<script>
document.onkeydown = function (e) {
if (e.ctrlKey &&
(e.keyCode === 85)) {
return false;
}
};
</script>
Do you have any suggestion to disable Ctrl + U key
thanks for the help
Re: form error page
In most cases jQuery is already added to the page, so you do not have to add it again. it may break the scripts on the page.
-
-
- Posts: 1433
- Joined: Fri Aug 21, 2020 8:27 am
- Contact:
Re: form error page
I used the validation through AJAX for captcha and it worked fine for me. I used layout grids for this and yes no extra setting just write what the error message and then check on "Enable Realtime validation" and done.
Your website looks outdated from modern perspective so try to use layout grids if you find it useful. It is the trend for modern browsers and future generation web development. A fast responsive website gives the users a better experience and visit your site more and more.
Your website looks outdated from modern perspective so try to use layout grids if you find it useful. It is the trend for modern browsers and future generation web development. A fast responsive website gives the users a better experience and visit your site more and more.
-
-
- Posts: 1433
- Joined: Fri Aug 21, 2020 8:27 am
- Contact:
Re: form error page
Here is a screen shot of your project working. If you do the right settings it may be the result for you also.
If you need a demo then please request.
If you need a demo then please request.