My application uses Recaptcha for user registration: auth.settings.register_captcha = Recaptcha(request,session.CAPTCHA_public,session.CAPTCHA_private)
At some point, this has stopped working. My registration page gets the "Verify:" title, but no Recaptcha form with it. If I don't set auth.settings.register_captcha, I don't get the "Verify:" title. So, it appears web2py is picking up on the idea that I want Recaptcha on my registration page, but the Recaptcha form itself doesn't show up for some reason. I did verify my keys with www.recaptcha.net to make sure they are correct. I don't see any other errors or messages to give a clue. I'm currently running web2py from source version 1.95.1 on Windows XP. Any ideas what to do to debug/solve this?