26 Topics

Member Avatar for
Member Avatar for Dani

Do you still use reCAPTCHA or something homemade? For us, we use jQuery to inject a hidden form field upon form submission that sends a little time sensitive and cookie sensitive string that we validate on the server side. I’m always curious to know what everyone else is doing.

Member Avatar for jkon
2
328
Member Avatar for AssertNull

I just posted something and had to go through the "Click the photos with street signs" test before my post was accepted. I was logged in. I don't remember ever doing this before here. Is this new? Is DW getting attacked with bots all of a sudden?

Member Avatar for Reverend Jim
0
532
Member Avatar for davy_yg

Hello, Can anyone help me check my contact captcha? http://www.advance-web-studio.com/contact.php That suppose to appears a captcha. Like this: http://www.advance-web-studio.com/captcha.jpg I wonder why it disappears?

Member Avatar for Dani
0
232
Member Avatar for CaffeineCoder

OK, here's a question for anyone willing to step up and answer or point to solution: I have some HTML forms for site visitors to request product information. Some of these forms send data to SalesForce. There has been an issue of spam coming through, so I have implemented CAPTCHA's …

Member Avatar for CaffeineCoder
0
972
Member Avatar for CaffeineCoder

Hello to all: I've been banging my head against the proverbial wall on this (for a few days), and finally thought I'd seek thoughts on it. I have an existing submission form that has been getting hit by bots, so I'm adding a CAPTCHA to it. The entire solution is …

Member Avatar for mattster
0
318
Member Avatar for delta_frost

I have a PHP script that generates a PNG captcha(set by Content-Type header).It can be embedded in an HTML page by just using `img`. I want to convert that image to base64 format for displaying.How do I go about doing that ? Using the normal method for encoding as given …

Member Avatar for LastMitch
0
840
Member Avatar for ss125

Good day!!! I have implemented the captcha verification to my application. But I am having a problem in it. I cannot able to find methods that can only reload the captcha image.Instead I have to reload the entire page. Is there any wa y to do it. This is my …

Member Avatar for ss125
0
203
Member Avatar for eerlewein

Good Morning Ladies and Gents, I am having the following issue. I have implemented a captcha widget to my downloads page since there were a log of spam files that were coming through. After hours of working on this I have finally gotten the Captcha app to work and forward …

Member Avatar for blocblue
0
637
Member Avatar for <M/>

So, I installed the recaptcha into my site... and I don't know why it doesn't verify... You can submit the form with out worrying about the code you have to type in so that recaptcha verifies the form. So... I have a form that shows recaptcha, but it doesn't verify... …

Member Avatar for <M/>
0
593
Member Avatar for d8m9

Hi, Iam trying to post a form with cookies using [Requests module](http://docs.python-requests.org/en/latest/). When I post the form and see the page with the results, there is an error in the page, saying that I didnt fill one field right. Iam absolute sure I fill that field right. When I post …

Member Avatar for d8m9
0
2K
Member Avatar for kimmi_baby

Hi, I have a wordpress site but really I'm looking for a plugin that will allow one word captcha. I have been searching for this but it doesn't appear to be the right name for it. What I want it to do is say "Please type the word frog" and …

Member Avatar for kimmi_baby
0
156
Member Avatar for moonw3ll

Just what is wrong with this simple code of mine? [CODE]#include<stdio.h> #include<string.h> #include<stdlib.h> main() { int i=0, num; char a[8]; char keyword[8]; system("cls"); while(i<8) { num = rand()%3; if ( num == 0 ) a[i] = 65 + rand()%26; /* 65 is the ascii value of A */ else if …

Member Avatar for moonw3ll
0
233
Member Avatar for ibakir

i need a help this is made me crazy, it works on all the browsers but the IE 8 not working at all , you can check this link below: [url]https://www.facebook.com/DalilackAds?sk=app_206541889369118[/url] the captcha says its wrong but in all the other browsers works just fine. Thank you

0
129
Member Avatar for hindu times

Hi there, I've been given the task of adding a Google recaptcha to a form on this website I'm working on. I'm not really familiar with the code that I've been given to edit, so I was wondering if anyone can help me. Basically, the "contact" page looks like this …

0
124
Member Avatar for feoperro

Hi, I made my own javascript method that I'd like to integrate into the JQuery validation plugin. I am new to JQuery and I'm not really sure how to integrate it though... Here is my javascript [B]working[/B] method: [CODE] function doAjax() { var captchaResponse = document.getElementById("registerCaptcha").value; $.ajax({ type: "POST", url: …

0
123
Member Avatar for sphe_g

Hi all I am currently working on a project for tech (university). It's a login form that uses a CAPTCHA as validation and must monitor the IP address of the computer that has currently requested the form. The IP monitoring part is so that if a user has made x …

Member Avatar for sphe_g
0
246
Member Avatar for Jeroen van Zijp

Hey all, To make it more user-friendly, I decided I want to add a JS form validation to my contact form. The essence of the JS should be that it calls for a check.php?input= with the entered captcha code appended. Then the PHP script would echo "valid" or "invalid". For …

0
102
Member Avatar for arvindikchari

Hello, I want to create a software in Java that submits same/similar data to multiple web forms (eg submit link data to link directories). What I want to do is, ask the user initially for the data that is to be submitted, and then go to the web form, open …

Member Avatar for NormR1
0
190
Member Avatar for karthik_ppts
Member Avatar for EmilyJohnson
0
154
Member Avatar for george61
Member Avatar for girlinthesun

I'm trying to get my Captcha to work. It works, but if the user does it correctly I want them to go to my thanks.html page, and I'm doing something wrong. Help? [CODE] <? require_once('recaptchalib.php'); $privatekey = "Private Key numbers"; $resp = recaptcha_check_answer ($privatekey, $_SERVER["REMOTE_ADDR"], $_POST["recaptcha_challenge_field"], $_POST["recaptcha_response_field"]); $to = 'myemail@myemail.com'; …

Member Avatar for girlinthesun
1
130
Member Avatar for punkrockbboy

Hey everyone, so my work wants me to update their website with a email contact form, i foolishly agreed not realising what i was getting myself into, i didn't know how complicated php is (i am an artist, not a coder :icon_redface: ), it's taken me about a week and …

Member Avatar for punkrockbboy
0
362
Member Avatar for ludamizleeto

I have always used the API for Vb.net from Decaptcher.com and have always sent the Captcha by sending an actual url to them as you see in the code below. Or maybe it uploaded the image anyway to them (I use the Webbrowser Control) I'll use for example this: Code: …

Member Avatar for darcee
0
525
Member Avatar for Nfurman

Hi, I am trying to make some "a la captcha" it must be simple, but not for me. my code is: [CODE] using System; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; public partial class _Default : System.Web.UI.Page …

Member Avatar for Nfurman
0
161
Member Avatar for Graphix

Hi all, I made a script that can be used as a captcha. It shows a random amount of (roman) letters sliding by every 2000 miliseconds (thats why its called [B]Matrix[/B]Captcha. But I am not sure wether it is able to stop bots from spamming. Does anyone have a suggestion …

0
112
Member Avatar for happygeek

Just when you think you have heard every crackpot theory for fighting the spam menace, a new one comes along that makes you sit up and take notice. How does using pictures of kittens to foil spammers grab you? Bear with me, because the concept has some merit. Indeed, it …

Member Avatar for happygeek
0
228

The End.