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
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
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,
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
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
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
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
Hi Melvyin still not working
$(".captcha_form").submit(function(event){
event.preventDefault();
var form = $(this)
alert (form.serialize())
$.ajax({
type: "POST",
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
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
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:
>
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
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
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 %}
;
event.preventDefault();
$.ajax({
type: "POST",
url: "./captcha",
contentType: "application/json",
data: $(this).serialize(),
dataType: "json",
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
Hi,
First of all - you are not sending anything to the form.
$.ajax({
type: "POST",
url: "../captcha",
contentType: "application/json",
data: {},
dataType: "json"
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
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()
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
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
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
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
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
>
> 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
2013/6/19 pradnya
> ...
>
> ('django.forms.RegexField', _('Regex')),
>
> ('django.forms.FileField', _('File')),
>
> # ('captcha.fields.CaptchaField', _('Captcha')),
>
>
The django-recaptcha f
Date & time')),
('django.forms.TimeField', _('Time')),
('django.forms.ChoiceField', _('Choice')),
('django.forms.MultipleChoiceField', _('Multiple Choice')),
('django.forms.ModelChoiceField', _('Model Choice'
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
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
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
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.
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
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"
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
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
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
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
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)
.
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
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&
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
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
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
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
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?
> >
> &
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:
>
> >
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
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
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
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
> > >
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
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
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
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
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:
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
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
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
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
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
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
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
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
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
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
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
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
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/
--~--~-~--~~~---
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
-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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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 - 100 of 114 matches
Mail list logo