Topic: How do I fix non-image question based captcha if it is failing on my site?
Topic type:
Some sites have had database table fail to be created that supports the question based catpcha. Here's how to add it so the page works again.
This requires that you have command line access to host where you run your Kete site.
- open a shell on the host in question and navigate to your application's home directory
- open an irb console session like so (drop "production" if the site is running in development mode)
$ script/console production >> require 'db/migrate/045_add_brain_buster.rb' >> AddBrainBuster.up >> quit
- that's it
Thanks to this page for finding out how to run individual migrations from the console: http://upstream-berlin.com/2007/12/12/running-a-skipped-rails-migration/
was the last to edit How do I fix non-image question based captcha if it is failing on my site?
on May 22nd, 2009 at 5:46 PM
created How do I fix non-image question based captcha if it is failing on my site?
on May 22nd, 2009 at 1:51 PM