Recommendation for effective captcha systems?

2022-04-29 Thread cseb...@gmail.com
I used some Django package called captcha but it seems spammers can bypass it. Is there a pretty nearly foolproof captcha people use instead? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Re: 🚨[URGENT] - 😥 Scrape Youtube Channel Email | Bypass Captcha 👀

2021-06-21 Thread Franck Tchouanga
https://www.fiverr.com/share/GdrzWd On Mon, Jun 21, 2021 at 7:22 PM VISHESH MANGLA < f20170...@pilani.bits-pilani.ac.in> wrote: > Use selenium > > On Sun, Jun 20, 2021, 06:29 Vrushang Desai > wrote: > >> Hi guys, >> *I'm trying to bypass youtube captcha &a

Re: 🚨[URGENT] - 😥 Scrape Youtube Channel Email | Bypass Captcha 👀

2021-06-21 Thread VISHESH MANGLA
Use selenium On Sun, Jun 20, 2021, 06:29 Vrushang Desai wrote: > Hi guys, > *I'm trying to bypass youtube captcha & download email of the channel > owner.* > > I would really like to know how can one actually solve it? > > As I'm facing issues with youtube,

Re: 🚨[URGENT] - 😥 Scrape Youtube Channel Email | Bypass Captcha 👀

2021-06-20 Thread Kasper Laudrup
On 19/06/2021 23.59, Vrushang Desai wrote: > Hi guys, > *I'm trying to bypass youtube captcha & download email of the channel > owner.* > You can't bypass a captcha programmatically, that's the whole point of a captcha. > I would really like to know how can on

🚨[URGENT] - 😥 Scrape Youtube Channel Email | Bypass Captcha 👀

2021-06-19 Thread Vrushang Desai
Hi guys, *I'm trying to bypass youtube captcha & download email of the channel owner.* I would really like to know how can one actually solve it? As I'm facing issues with youtube, *Where captcha disappears (Even if email can be scraped from different id).* *Any Help or API wo

Re: arithmatic captcha

2020-03-21 Thread Sandip Nath
Please refer to this link: https://simpleisbetterthancomplex.com/tutorial/2017/02/21/how-to-add-recaptcha-to-django-site.html On Friday, 20 March 2020 17:35:00 UTC+5:30, Hema Bhagnani wrote: > > I have already coded the user login and signup page. Now I want to add > arithmetic capt

arithmatic captcha

2020-03-20 Thread Hema Bhagnani
I have already coded the user login and signup page. Now I want to add arithmetic captcha to my signup page.I have not used the models form or any form.form..How to implement the arithmetic captcha?? -- You received this message because you are subscribed to the Google Groups "Django

Re: Django Captcha Ajax call not working

2017-03-28 Thread valerio orfano
Hi Melvyin still not working $(".captcha_form").submit(function(event){ event.preventDefault(); var form = $(this) alert (form.serialize()) $.ajax({ type: "POST",

Re: Django Captcha Ajax call not working

2017-03-27 Thread valerio orfano
Hi Melvyn thanx a lot . I will try tomorrow early morning and will let u know. Thanx. valerio On Monday, March 27, 2017 at 3:31:38 PM UTC+2, Melvyn Sopacua wrote: > > Hi, > > > > {% if field.name = 'captcha' %} > > > > assigns 'captcha' to

Re: Django Captcha Ajax call not working

2017-03-27 Thread Melvyn Sopacua
Hi, {% if field.name = 'captcha' %} assigns 'captcha' to field.name and returns if that succeeded. So it's always true. You probably mean: {% if field.name == 'captcha' %} >From what you describe, testfield shows up and your template code says it >sho

Re: Django Captcha Ajax call not working

2017-03-27 Thread valerio orfano
testfield is where i type my captcha, sorry On Monday, March 27, 2017 at 2:38:15 PM UTC+2, valerio orfano wrote: > > Hi Melvyn thanx for ur reply, > > this is my form. > > class AjaxForm(forms.ModelForm): > captcha = CaptchaField() > class Meta: >

Re: Django Captcha Ajax call not working

2017-03-27 Thread valerio orfano
Hi Melvyn thanx for ur reply, this is my form. class AjaxForm(forms.ModelForm): captcha = CaptchaField() class Meta: model = ajaxModel exclude = [] class ajaxModel(models.Model): testfield = models.TextField(null=True, blank=True) If i don't use a ajaxmodel a g

Re: Django Captcha Ajax call not working

2017-03-27 Thread Melvyn Sopacua
On Monday 27 March 2017 04:46:06 valerio orfano wrote: > {% if field.name = 'captcha' %} It may not make a difference if you only have one visible field, but this is not a comparison. -- Melvyn Sopacua -- You received this message because you are subscribed to the Google Gr

Re: Django Captcha Ajax call not working

2017-03-27 Thread valerio orfano
btw this is my html: {%csrf_token%} {{ form.non_field_errors }} {% for field in form.visible_fields %} {% if field.name = 'captcha' %} {{field}} {% endif %} {{ field.errors }} {% endfor %} {% for field in form.hidden_fields %}

Re: Django Captcha Ajax call not working

2017-03-27 Thread valerio orfano
; event.preventDefault(); $.ajax({ type: "POST", url: "./captcha", contentType: "application/json", data: $(this).serialize(), dataType: "json",

Re: Django Captcha Ajax call not working

2017-03-27 Thread ludovic coues
You Ajax call have a suspicious "data: {}" in the middle of all the arguments. On 27 Mar 2017 10:23 am, "valerio orfano" wrote: Hi, I managed to make an ajax call. But the form is always invalid. IT is like the captcha field passed to the view is always empty. valerio

Re: Django Captcha Ajax call not working

2017-03-27 Thread Andréas Kühne
Hi, First of all - you are not sending anything to the form. $.ajax({ type: "POST", url: "../captcha", contentType: "application/json", data: {}, dataType: "json"

Re: Django Captcha Ajax call not working

2017-03-27 Thread valerio orfano
Hi, I managed to make an ajax call. But the form is always invalid. IT is like the captcha field passed to the view is always empty. valerio On Monday, March 27, 2017 at 8:48:17 AM UTC+2, valerio orfano wrote: > > I have the following class view taken from documentation: > > class

Django Captcha Ajax call not working

2017-03-26 Thread valerio orfano
return HttpResponse(json.dumps(to_json_response), content_type='application/json') else: return HttpResponse("test2", content_type='application/json') and the following ajax call from template: function captcha()

Re: Django Captcha or MathCaptcha application

2017-03-23 Thread Camilo Torres
May be you are missing a data base migration? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, s

Re: Django Captcha or MathCaptcha application

2017-03-23 Thread valerio orfano
install captcha, pillow 2.edit setting.py in installed app to mention 'captcha' 3.after that add URL to urls.py,url(r'^captcha/', include('captcha.urls')) should captcha.urls contain any row 4. forms.py: from captcha.fields import CaptchaFi

Re: Django Captcha or MathCaptcha application

2017-03-22 Thread Thiago Parolin
I am using django-recaptcha2, that is a google recaptcha... Very simple to setup and use and works very well 2017-03-22 11:20 GMT-03:00 valerio orfano : > Hi > > i am trying to apply captcha process to my web site. I could find any > clear documentation out there (at least clear to

Django Captcha or MathCaptcha application

2017-03-22 Thread valerio orfano
Hi i am trying to apply captcha process to my web site. I could find any clear documentation out there (at least clear to me). Do you know any simple step by step tutorial or captcha application source code you have already created and that works fine? I am looking for code regarding view

Re: Django Simple Captcha - Manually displaying the Captcha field in a template

2013-10-03 Thread mmuk2
Hi Alexander, Although I no longer use captcha on the form in question anymore, I recall that I did eventually get it working by adding something like the following in my html to generate the captcha component: {{ signup_form.captcha.label }} {{ signup_form.captcha

Re: Django Simple Captcha - Manually displaying the Captcha field in a template

2013-10-03 Thread Alexander Tyapkov
> > Hi Mark, > Interesting if you finally have found some solution or not? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroup

Re: captcha field django form designer, success html mail.

2013-06-19 Thread Felipe Coelho
2013/6/19 pradnya > ... > > ('django.forms.RegexField', _('Regex')), > > ('django.forms.FileField', _('File')), > > # ('captcha.fields.CaptchaField', _('Captcha')), > > The django-recaptcha f

captcha field django form designer, success html mail.

2013-06-19 Thread pradnya
Date & time')), ('django.forms.TimeField', _('Time')), ('django.forms.ChoiceField', _('Choice')), ('django.forms.MultipleChoiceField', _('Multiple Choice')), ('django.forms.ModelChoiceField', _('Model Choice'

problems with django-simple-captcha

2013-05-14 Thread teddy wang
I'm using django-simple-captcha but got some confused problems I configure the module according to the official documentation, but I can't see the captcha pitures <https://lh3.googleusercontent.com/-gHG-tSyhxII/UZH7zIxJlxI/AEA/E4t2YtscNHI/s1600/Screen+Shot+2013-05-14+at+%E

Django Simple Captcha - Manually displaying the Captcha field in a template

2013-03-04 Thread mmuk2
Hi, I'm currently trying to implement django simple captcha on my form. It's quite straight forward to set up with the "out of the box" django form functionality - just add a captcha field to the form in forms.py, and in the template, use the built in django for

Re: Audio Captcha for django

2012-02-27 Thread Anoop Thomas Mathew
Why can't you use this: http://www.google.com/recaptcha Thanks, Anoop atm ___ Life is short, Live it hard. On 27 February 2012 19:59, Karthik Abinav wrote: > Hi, > > Does django have an implementation of audio captch for registration? If > so please link me to the docs. > > Thanks, > Kart

Audio Captcha for django

2012-02-27 Thread Karthik Abinav
Hi, Does django have an implementation of audio captch for registration? If so please link me to the docs. Thanks, Karthik Abinav -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.

Re: Cannot install freetype to use the 'django-simple-captcha' application.

2011-10-22 Thread Kurtis
braries:http://www.pythonware.com/products/pil/ > > This is the binding that i used for > Freetype:http://code.google.com/p/freetype-py/downloads/detail?name=freetype-p... > > This is the application that uses this freetype > library:http://code.google.com/p/django-simple-captcha/. > > C

Cannot install freetype to use the 'django-simple-captcha' application.

2011-10-22 Thread jenia ivlev
his freetype library: http://code.google.com/p/django-simple-captcha/. Can you please instruct me on how to install PIL and Freetype to work with python. Thank you for your kind concern. Jenia -- You received this message because you are subscribed to the Google Groups "Django users"

Re: django simple captcha issue

2010-07-02 Thread tsmets
No stack trace ... ? What parts are you using text-to-speech... ? How did you configure it ... ? On Jul 1, 9:52 pm, weiwei wrote: > Hi all, > > I am using django-simple-captcha, it works fine on my dev environment > (windows). But after i deployed to linux server, all other views

Re: django simple captcha issue

2010-07-02 Thread martikk
Try to change PIL version On Jul 1, 10:52 pm, weiwei wrote: > Hi all, > > I am using django-simple-captcha, it works fine on my dev environment > (windows). But after i deployed to linux server, all other views/pages > are working fine. But  when i request  /captcha/image/{{imag

Re: django simple captcha issue

2010-07-01 Thread Venkatraman S
On Fri, Jul 2, 2010 at 1:22 AM, weiwei wrote: > > I am using django-simple-captcha, it works fine on my dev environment > (windows). But after i deployed to linux server, all other views/pages > are working fine. But when i request /captcha/image/{{imagekey}}/ i > got server int

django simple captcha issue

2010-07-01 Thread weiwei
Hi all, I am using django-simple-captcha, it works fine on my dev environment (windows). But after i deployed to linux server, all other views/pages are working fine. But when i request /captcha/image/{{imagekey}}/ i got server internal error 500. Something I missed to configure? Thanks a lot

Re: The emergence of captcha after several incorrect logins

2009-09-25 Thread Sam Lai
3 times wrong authentication emergence recaptcha. But you can simply > delete the session and thus bypass a recaptcha. > How to make display captcha could not get around? > > Thanks. > > Code: > html_captcha = captcha.displayhtml(settings.RECAPTCHA_PUB_KEY) > def auth(request)

The emergence of captcha after several incorrect logins

2009-09-25 Thread chegivara
. How to make display captcha could not get around? Thanks. Code: html_captcha = captcha.displayhtml(settings.RECAPTCHA_PUB_KEY) def auth(request): if request.method == 'POST': if 'captcha_on' in request.session: check_captcha = captcha

Re: captcha

2009-07-30 Thread gabon
this recent tutorial helped me: http://www.marcofucci.com/tumblelog/26/jul/2009/integrating-recaptcha-with-django/ chr On Jul 30, 1:30 pm, gabon wrote: > It seems I've problem installing the recaptcha client library. > > After the setup I still get "no module named captcha&

Re: captcha

2009-07-30 Thread gabon
It seems I've problem installing the recaptcha client library. After the setup I still get "no module named captcha" after the import. Funny enough after the installation it didn't create the captcha folder in the python site-packages folder :S Cheers, chr On Jul 2

Custom captcha

2009-07-30 Thread gabon
I'm evaluating the, probably crazy, idea to build a custom captcha, to have it more related to the website. I created a subclass of forms.CharField where on creation I choose the random content and show, for testing purposes, a related label. The problem I'm having is that when the requ

Re: captcha

2009-07-29 Thread Gabriel .
On Wed, Jul 29, 2009 at 3:38 PM, ramanathan wrote: > > how to include captcha code in django ? > Did you try google? http://code.google.com/p/django-simple-captcha/ http://seeknuance.com/2008/03/18/integrating-recaptcha-with-django/ -- Kin

captcha

2009-07-29 Thread ramanathan
how to include captcha code in django ? Regards Ramanathan.M --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To u

Re: django captcha

2009-05-21 Thread Dougal Matthews
tp://django-simple-captcha.googlecode.com/svn/trunk/ > > django-simple-captcha-read-only > > > > On May 21, 9:30 am, online wrote: > > > > > Could anyone please recommend a open source library captcha working > > > fine with django? > > > &

Re: django captcha

2009-05-21 Thread online
So i have to install svn on mymachine? Why people make download so complicated... On May 20, 10:22 pm, jai wrote: > svn checkouthttp://django-simple-captcha.googlecode.com/svn/trunk/ > django-simple-captcha-read-only > > On May 21, 9:30 am, online wrote: > > >

Re: django captcha

2009-05-20 Thread jai
svn checkout http://django-simple-captcha.googlecode.com/svn/trunk/ django-simple-captcha-read-only On May 21, 9:30 am, online wrote: > Could anyone please recommend a open source library captcha working > fine with django? > > http://code.google.com/p/django-simple-captcha/ look

Re: django captcha

2009-05-20 Thread Sam Kuper
2009/5/21 online > Could anyone please recommend a open source library captcha working > fine with django? Personally, I'm a fan of ReCAPTCHA, but it may not be quite what you're after. > http://code.google.com/p/django-simple-captcha/ looks but i just > cannot find wh

django captcha

2009-05-20 Thread online
Could anyone please recommend a open source library captcha working fine with django? http://code.google.com/p/django-simple-captcha/ looks but i just cannot find where to download. Thanks --~--~-~--~~~---~--~~ You received this message because you are

Re: Form Wizard and captcha

2009-04-13 Thread qrilka
r ago > > > -http://groups.google.com/group/django-users/browse_thread/thread/a6fd > > ... > > > I have somewhat different problem: on the last of my forms I use > > > captcha field, but after successful validation the test string for   > > it > > >

Re: Form Wizard and captcha

2009-04-13 Thread Adi Sieker
ilka wrote: > > I've stumbled upon from revalidation in form wizard. The similar > > problem was discussed a year ago > > -http://groups.google.com/group/django-users/browse_thread/thread/a6fd > ... > > I have somewhat different problem: on the last of my forms I u

Form Wizard and captcha

2009-04-13 Thread Kirill Zaborski
what different problem: on the last of my forms I use > captcha field, but after successful validation the test string for it > gets erased (either in cache in supercaptcha or in DB in django-simple- > captcha) and its quite normal from my point of view. But form wizard > does form revali

Form Wizard and captcha

2009-04-08 Thread qrilka
I've stumbled upon from revalidation in form wizard. The similar problem was discussed a year ago - http://groups.google.com/group/django-users/browse_thread/thread/a6fdf2971f96deed/6313eb5a18a40085 I have somewhat different problem: on the last of my forms I use captcha field, but

Re: django captcha apps

2009-04-07 Thread Martin
Did you browse google code already? http://code.google.com/p/django-captcha/ I bet there are more apps there... Best regards, Martin 2009/4/8 Joshua Partogi > > Hi all, > > Can anyone recommend me any good django captcha apps? I tried search > on the list but the results that

django captcha apps

2009-04-07 Thread Joshua Partogi
Hi all, Can anyone recommend me any good django captcha apps? I tried search on the list but the results that is returned is mostly about errors with django captcha. Thank you very much in advance. -- If you can't believe in God the chances are your God is too small. Read my blog:

Re: Comments custom form made easier to add captcha

2009-04-01 Thread Michel Thadeu Sabchuk
Hi, > You don't say what version of Django you are using. This sounds like you > want exactly the kind of customization described here: > > http://docs.djangoproject.com/en/dev/ref/contrib/comments/custom/ Yes, I already following it, but with 1.0.2 django version :) > That page doesn't exist i

Re: Comments custom form made easier to add captcha

2009-04-01 Thread Karen Tracey
On Wed, Apr 1, 2009 at 3:05 PM, Michel Thadeu Sabchuk wrote: > I created a custom comments app to make use of captcha. I didn't > change the mode, I just change the form to make use of django-simple- > captcha [1]. > > To make all magic works I need to do some hacks in django

Re: Comments custom form made easier to add captcha

2009-04-01 Thread Michel Thadeu Sabchuk
I found a better way to hack :) In the django.contrib.comments.__init__ file, I changed the get_model, get_form and get_form_target method to something like: def get_form(): if get_comment_app_name() != __name__ and hasattr(get_comment_app (), "get_form"): return get_comment_app().ge

Comments custom form made easier to add captcha

2009-04-01 Thread Michel Thadeu Sabchuk
Hi Guys, I created a custom comments app to make use of captcha. I didn't change the mode, I just change the form to make use of django-simple- captcha [1]. To make all magic works I need to do some hacks in django comments framework. I want to use the existing views, I don't want t

Re: Martin Fowler's "Captcha for Django"

2009-03-18 Thread bendavis78
I've made some more changes/fixes to this, in case anyone's interested. Here's what's changed from the original: - updated for compatibility w/ django-1.1 - using sha1 instead of md5 to store captcha image (theoretically more secure) - added expire_time config variab

Re: Martin Winkler's "Captcha for Django"

2009-03-14 Thread Alex Gaynor
On Sat, Mar 14, 2009 at 11:23 AM, bendavis78 wrote: > > EDIT: Oops! where did I get "Martin Fowler" from? It was "Martin > Winkler"!! (sorry Martin W) > > On Mar 14, 11:21 am, bendavis78 wrote: > > Hi django-heads, I found Martin F

Re: Martin Winkler's "Captcha for Django"

2009-03-14 Thread bendavis78
EDIT: Oops! where did I get "Martin Fowler" from? It was "Martin Winkler"!! (sorry Martin W) On Mar 14, 11:21 am, bendavis78 wrote: > Hi django-heads,  I found Martin Fowler's "Captcha for Django" > here:http://django.agami.at/media/captcha/.   Th

Martin Fowler's "Captcha for Django"

2009-03-14 Thread bendavis78
Hi django-heads, I found Martin Fowler's "Captcha for Django" here: http://django.agami.at/media/captcha/. This is by far the easiest to use captcha system for django that I've found on the 'net, but I found it was outdated (not working w/ 1.0 or 1.1). If anyone is

Re: how to integrate captcha in Django

2009-02-04 Thread Karen Tracey
On Thu, Feb 5, 2009 at 12:54 AM, gganesh wrote: > > hi Django floks > i'm newbie to Django ,i have a task like > People have to register with their email in the index page , to enter > into my site and, to protect my site from unwanted usage, i need to > integrate cap

how to integrate captcha in Django

2009-02-04 Thread gganesh
hi Django floks i'm newbie to Django ,i have a task like People have to register with their email in the index page , to enter into my site and, to protect my site from unwanted usage, i need to integrate captcha .i will be glad to find a help from you thanks in ad

Re: Image Captcha

2009-02-04 Thread Ales Zoulek
Please: 1] stop using this signature 2] give us some details about what you are doing, what exception in raises and traceback. A. 2009/2/4 Harryanto Ie : > i have to create image captcha and i have an error. it's > saying that IOError. what

Image Captcha

2009-02-04 Thread Harryanto Ie
i have to create image captcha and i have an error. it's saying that IOError. what should i do? "Flexi - Gratis bicara sepanjang waktu se-Jawa Barat, Banten dan D

Re: Definitive Captcha?

2009-01-17 Thread Petite Abeille
On Jan 17, 2009, at 5:47 PM, Tim wrote: > Captcha Alternatively... "Stopping spambots with hashes and honeypots" -- Ned Batchelder, 2007 http://nedbatchelder.com/text/stopbots.html Cheers, -- PA. http://alt.textdrive.com/nanoki/ --~--~-~--~~~---

Re: Definitive Captcha?

2009-01-17 Thread Eric Abrahamsen
There's not really much needed to get captcha or recaptcha working with django, mostly just a class or two. When I was using recaptcha I found that this module: http://code.google.com/p/recaptcha-django/ did most of what I needed. If you're shopping, however, I'd recommend

Definitive Captcha?

2009-01-17 Thread Tim
Hi - can anyone tell me what the de-facto standard is for adding Captcha support to a Django project? I have seen many implementations - the first Google hit for "django captcha" describes itself as "rough around the edges" and seems to not have much associated activity. By

Problem with django captcha module

2007-10-25 Thread BitBlazer
Hi, I just tried the django captcha module in my application. Everything is fine except for one small problem. The code that extracts the font files from `fonts` directory doesn't pay attention to the hidden files. For example all my code is in SVN. As a result each project folder has a h

Re: Captcha module Version 1.1 ready for testing

2007-06-15 Thread Forest Bond
On Fri, Jun 15, 2007 at 09:48:02AM -0400, Forest Bond wrote: > Do note that it must be symmetric, since you need to be able to decrypt the > answer. Sorry, this is not true. It must not be a hash, anyway, and I don't see the benefit of using public key crypto here. To me, it makes the most sense

Re: Captcha module Version 1.1 ready for testing

2007-06-15 Thread Forest Bond
nce you need to be able to decrypt the answer. > Furthermore I don't see a real reason to generate images on the > fly instead of storing them directly. My approach is quite speedy even > with auto_cleanup, when there are many captcha images sitting in the > filesystem all the tim

Re: Captcha module Version 1.1 ready for testing

2007-06-15 Thread Martin Winkler
Am Fri, 15 Jun 2007 14:53:59 +0800 schrieb "Nimrod A. Abing" <[EMAIL PROTECTED]>: > I will be downloading your module and testing it out soon. Cool! I'd love to get some feedback especially with different setup than I have. > If I have patches for your module, do I send it here on django-users

Re: Captcha module Version 1.1 ready for testing

2007-06-15 Thread Martin Winkler
rmore I don't see a real reason to generate images on the fly instead of storing them directly. My approach is quite speedy even with auto_cleanup, when there are many captcha images sitting in the filesystem all the time. I ran an apache benchmark test on my development machine (not the fast

Re: Captcha module Version 1.1 ready for testing

2007-06-14 Thread Nimrod A. Abing
want to use their own "alphabet" > - which might be only digits, and no characters. > So I made a nice configuration possibility for my captcha module. You > can define it in your settings.py, and also adjust individual forms, if > you wish. That's great! > > 3. No

Re: Captcha module ready for testing

2007-06-14 Thread Iapain
Hi, Nice implementation but dont see any logic to save captcha temporary, you should add option like "nosave" and use cStringIO in that case. Cheers, Deepak On Jun 13, 5:11 pm, MartinWinkler <[EMAIL PROTECTED]> wrote: > Hi all, > > I just uploaded the captcha mo

Re: Captcha module Version 1.1 ready for testing

2007-06-14 Thread Forest Bond
On Thu, Jun 14, 2007 at 08:14:54PM +0200, Martin Winkler wrote: > Am Thu, 14 Jun 2007 12:00:11 +0800 > schrieb "Nimrod A. Abing" <[EMAIL PROTECTED]>: > > > Are you planning to implement a configuration to allow in-memory > > images? > > One thing that annoys me with in-memory images is that you h

Re: Captcha module Version 1.1 ready for testing

2007-06-14 Thread Martin Winkler
made a nice configuration possibility for my captcha module. You can define it in your settings.py, and also adjust individual forms, if you wish. > 3. No "twists" are applied to characters. I have found that distorting > characters tends to confuse users even more. Will there be a

Re: Captcha module ready for testing

2007-06-13 Thread Nimrod A. Abing
Hello, I am about to try your module and I haven't downloaded it yet but I have a few questions and some suggestions. I have my own CAPTCHA module too which is slightly different from yours in some respects: 1. It does not need a dedicated directory to save image files. Images are creat

Re: Captcha module ready for testing

2007-06-13 Thread Martin Winkler
Am Wed, 13 Jun 2007 18:47:10 - schrieb JustJohnny <[EMAIL PROTECTED]>: > I just installed your captcha module. I'm not sure if it was me, my > setup or the code but I kept getting a 'help_text' error. That is very strange - help_text is part of django's newfo

Re: Captcha module ready for testing

2007-06-13 Thread JustJohnny
Martin, I just installed your captcha module. I'm not sure if it was me, my setup or the code but I kept getting a 'help_text' error. I ended up removing all references to help text from captcha/__init__.py", line 169 and other areas. After I got past that, I discove

Captcha module ready for testing

2007-06-13 Thread MartinWinkler
Hi all, I just uploaded the captcha module I recently mentioned to http://django.agami.at/media/captcha/ Please take a look at it and tell me what you think of it. I really hope this module can be put into the trunk on django.contrib some day. Maybe one of the lead developers can take a look

Re: Invalid Login and Throwing Captcha

2007-04-27 Thread Paul Rauch
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 johnny schrieb: > I want to throw captcha, when the user failed to login, after 2nd > try. How do I keep track of how many times login fails? Set a cookie > with login attempt? > > Thank you. > this is a bad way to do this, t

Invalid Login and Throwing Captcha

2007-04-27 Thread johnny
I want to throw captcha, when the user failed to login, after 2nd try. How do I keep track of how many times login fails? Set a cookie with login attempt? Thank you. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: Newforms Captcha 0.1 release

2007-04-26 Thread Brandon Low
I've setup a website of sorts for this project: http://www.lostlogicx.com/captchasblow On 2007-04-26 (Thu) at 09:10:21 -0500, Brandon Low wrote: > > 16 hours ago I posted about my captcha system that was quite rough > around the edges. > > I've done some house cleaning

Re: Newforms Captcha 0.1 release

2007-04-26 Thread Brandon Low
o/appinfo.html?csaid=BA8EE19AE8DC2ECA > > -Mike > > On Apr 26, 12:19 pm, Henrik Jensen <[EMAIL PROTECTED]> wrote: > > Jay Parlar wrote: > > > On 4/26/07, Brandon Low <[EMAIL PROTECTED]> wrote: > > >> 16 hours ago I posted about my captcha system t

Re: Newforms Captcha 0.1 release

2007-04-26 Thread Mike Axiak
We're working on it: http://code.google.com/soc/django/appinfo.html?csaid=BA8EE19AE8DC2ECA -Mike On Apr 26, 12:19 pm, Henrik Jensen <[EMAIL PROTECTED]> wrote: > Jay Parlar wrote: > > On 4/26/07, Brandon Low <[EMAIL PROTECTED]> wrote: > >> 16 hours ago I post

Re: Newforms Captcha 0.1 release

2007-04-26 Thread Henrik Jensen
Jay Parlar wrote: > On 4/26/07, Brandon Low <[EMAIL PROTECTED]> wrote: >> 16 hours ago I posted about my captcha system that was quite rough >> around the edges. >> >> I've done some house cleaning since then and will call it 0.1. >> >> This is n

Re: Newforms Captcha 0.1 release

2007-04-26 Thread Jay Parlar
On 4/26/07, Brandon Low <[EMAIL PROTECTED]> wrote: > > 16 hours ago I posted about my captcha system that was quite rough > around the edges. > > I've done some house cleaning since then and will call it 0.1. > > This is now in "Works on my live site" s

Newforms Captcha 0.1 release

2007-04-26 Thread Brandon Low
16 hours ago I posted about my captcha system that was quite rough around the edges. I've done some house cleaning since then and will call it 0.1. This is now in "Works on my live site" state. I managed to clean up most of the hacky crap that was in the last version and add s

Django Captcha (solution, with code)

2007-04-25 Thread [EMAIL PROTECTED]
I'm pretty new to django, but I did recently convert my personal site to be primarily django based. This is primarily a blog application, with a few little site-specific extras. I soon realized that I'd need some kind of comment spam prevention, but found the existing Django captcha

Re: Captcha example

2007-02-21 Thread Mike
Hi Joe, Thanks for taking the time to respond--that makes sense to me. I had to go all the way to Poland but finally found a working code example (Dziękuję!). Here's the link in case it's helpful for someone else: http://www.rkblog.rk.edu.pl/w/p/django-and-capt

Re: Captcha example

2007-02-20 Thread Joseph Heck
I used a very slight variation off that same code base - so let me take a stab at explaining what the general idea is behind how captcha was implemented - In the view where you're going to display a captcha, generate first a "captcha" that just goes into the database - a combin

Captcha example

2007-02-20 Thread Mike
Hello, Can anyone puke up a simple example of using captcha with Django forms? [I've already RTFM&N.] I installed the app code from http://code.google.com/p/django-captcha/ and noticed the test but don't see how it works with templates and extraspecially newforms (needs to be

Re: captcha problem

2006-10-31 Thread Dirk Eschler
Am Dienstag, 31. Oktober 2006 16:11 schrieb Grigory Fateyev: > Hello Dirk Eschler! > > On Tue, 31 Oct 2006 15:32:03 +0100 you wrote: > > > urlpatterns = patterns('anastas.apps.captcha.views', > > > (r'^i/$', 'image'), > > > (r'^json/$', 'json'), > > > ) > > This is like mine. > > > Uh wait

Re: captcha problem

2006-10-31 Thread Dirk Eschler
Am Dienstag, 31. Oktober 2006 15:20 schrieb Dirk Eschler: > In this case i would expect a TemplateSyntaxError. Since you don't get one, > i suppose it is loaded. > > I tried to reproduce your error: i get empty captcha_* values when my > captcha/urls.py is wrong. Judging fr

Re: captcha problem

2006-10-31 Thread Grigory Fateyev
Hello Dirk Eschler! On Tue, 31 Oct 2006 15:32:03 +0100 you wrote: > > urlpatterns = patterns('anastas.apps.captcha.views', > > (r'^i/$', 'image'), > > (r'^json/$', 'json'), > > ) This is like mine. > Uh wait, only the image is broken in this case. > > Another thing to check, does pycap

Re: captcha problem

2006-10-31 Thread Dirk Eschler
Am Dienstag, 31. Oktober 2006 14:24 schrieb Grigory Fateyev: > Hello Aidas Bendoraitis! > > On Tue, 31 Oct 2006 12:11:00 +0100 you wrote: > > Maybe your captcha template tag is not loaded? Did you put it in the > > right place? > > Thanks for replay! > > I am sur

Re: captcha problem

2006-10-31 Thread Grigory Fateyev
Hello Aidas Bendoraitis! On Tue, 31 Oct 2006 12:11:00 +0100 you wrote: > Maybe your captcha template tag is not loaded? Did you put it in the > right place? Thanks for replay! I am sure templsate is in the right place: anastas/ apps/ captcha/ templa

  1   2   >