I am writing a double-opt-in registration routine. An incoming reply email is supposed to trigger an update to the database. I am getting this error:
'log': SQLite3::SQLException: attempt to write a readonly database: UPDATE "members" SET "double_opt_in" = 'OK', "updated_at" = '2009-12-13 19:54:56' WHERE "id" = 24 It seems very likely that the relevant process doesn't have permissions to write to the database. That's not too surprising since the database is owned by a particular user. However, all of my other Rails methods have no problem writing to the database. So, I'm a bit perplexed. More importantly, before I go off changing permissions on the database, I'm wondering if anyone has any insight on what's going on here, why I would suddenly be seeing this issue and what the appropriate fix should be. Thanks for any input. ... doug -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-t...@googlegroups.com. To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.