The captcha module allows for different types of challenges to be set for different forms (the riddler being one option). I was hoping that would mean I could assign different sets of riddles to said forms, however the way to do so is not readily apparent to me. The riddler module allows for many different questions, but they cannot be grouped into different sets. One workaround I could think of would be to install several different copies of the riddler module, but I would need some instruction in how to do so. Presumably the riddler stores its questions in a database somewhere, and each different copy of the module would have to be modified so that its database was stored somewhere else. Otherwise I imagine they would all just be referencing the same set of questions as each other, which would defeat the whole point.
Any guidance would be much appreciated.
Comments
Comment #1
awolfey commentedcolemanw,
Riddler's not designed to do what you're asking. Captcha handles which captcha type is applied to which form.
Riddler uses the variables table to store everything. You could do what you're suggesting. You would need to replace 'riddler' with 'riddler_comment' (or whatever) everywhere in a copy of the module, then install it as usual.
Comment #2
colemanw commentedThanks for the advice.