Hello, I would like to add captcha authentication to guestbook in drupal 6, I think I can do it if I know the form ID for the guestbook message. If this will work could you please tell me the form name as I can't find it! Many thanks

Comments

pitxels’s picture

I would like to have my guestbook with captcha as well, I will follow this thread :)

matthew_ellis24’s picture

jusspitti,
I'm not sure how I did it but I have
guestbook_form_entry_form
guestbook_form_entry
added in my challenge type per form settings. I think I opened up the guestbook.module file and tried all the functions one at a time until I got one that worked.

Sometimes in life it's rewarding to work things out for yourself. But not this time - it took ages.

So add those forms to your CAPTCHA settings, select a challenge type and you should be sorted

sun’s picture

Status: Active » Fixed

By going to CAPTCHA's settings, you can enable an option that adds an administrative link to all forms and thus allows to enable or disable CAPTCHA support on each form. Just visit a guestbook then, enable CAPTCHA for that form, and you're done.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

nishanth23’s picture

How will I include Captcha module into GuestBook??

-- I installed and enabled Captcha and guestbook modules. But i dont know how to include captcha module in guestbook module. I enabled "administrative link to forms" in the captcha configuration. But still its not working. Tell me How to find Form id for particular form.
Because I suppose to give form id for guestbook

toniw’s picture

I don't know if this is any different in D6, but in D5 I had to manually make this change in the database to get CAPTCHA to work with Guestbook:

INSERT INTO `captcha_points` ( `form_id` , `module` , `type` ) VALUES ('guestbook_form_entry_form', NULL , NULL);
inteldesk’s picture

Drupal 6 fix --- pasted this " guestbook_form_entry_form " into the text box where it asks for Form ID

vako’s picture

1. Find the form name by viewing the source and doing a search on form_id
2. goto /admin/user/captcha
3. add the form name guestbook_form_entry_form in the form_id column
4. choose the Challenge type

enjoy!