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.

 

  1. open a shell on the host in question and navigate to your application's home directory
  2. 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
    
  3. 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/

 

Discuss This Topic

There are 0 comments in this discussion.

join this discussion

Creative Commons Attribution-Share Alike 3.0 New Zealand License
How do I fix non-image question based captcha if it is failing on my site? by Walter McGinnis is licensed under a Creative Commons Attribution-Share Alike 3.0 New Zealand License