On Sun, 2007-06-10 at 18:03 +0000, MartinWinkler wrote: > Hi all, > > I have implemented a captcha solution for django (because the already > available approaches did not fit my needs), and came to this problem: > > An image is created for every captcha-enabled form that is being > displayed. Wen the user submits the form, the image is being deleted > automatically.
Why actually create a file for the image? Just create the image in memory and send the stream to the client instead of linking to a real file on the filesystem. You could also encrypt the response you expect from the user and include it as a hidden field in the form and then you're basically stateless (at least as far as the form is concerned). Todd --~--~---------~--~----~------------~-------~--~----~ 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 unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---